Skip to content

Instantly share code, notes, and snippets.

@grgbrn
Created January 18, 2023 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grgbrn/6d99eeea700e5b3a9057023cbb2ef2dd to your computer and use it in GitHub Desktop.
Save grgbrn/6d99eeea700e5b3a9057023cbb2ef2dd to your computer and use it in GitHub Desktop.
flyctl deploy debugging
[greg@fedora go-example]$ LOG_LEVEL=debug flyctl deploy
DEBUG Loaded flyctl config from/home/greg/.fly/config.yml
DEBUG determined hostname: "fedora.fritz.box"
DEBUG determined working directory: "/home/greg/projects/fly/go-example"
DEBUG determined user home directory: "/home/greg"
DEBUG determined config directory: "/home/greg/.fly"
DEBUG ensured config directory exists.
DEBUG ensured config directory perms.
DEBUG cache loaded.
DEBUG config initialized.
DEBUG initialized task manager.
DEBUG skipped querying for new release
DEBUG client initialized.
DEBUG --> POST https://api.fly.io/graphql
{
"query": "query ($appName: String!) { appbasic:app(name: $appName) { id name platformVersion organization { id slug } } }",
"variables": {
"appName": "cold-wave-8732"
}
}
DEBUG {}
DEBUG <-- 200 https://api.fly.io/graphql (342.74ms)
{
"data": {
"appbasic": {
"id": "cold-wave-8732",
"name": "cold-wave-8732",
"platformVersion": null,
"organization": {
"id": "D307G6NwgR0z2u4vPG23jYy8a3c1LYmkl",
"slug": "personal"
}
}
}
}
DEBUG app config loaded from /home/greg/projects/fly/go-example/fly.toml
==> Verifying app config
DEBUG --> POST https://api.fly.io/graphql
{
"query": "query($appName: String!, $definition: JSON!) { app(name: $appName) { parseConfig(definition: $definition) { definition valid errors services { description } } } }",
"variables": {
"appName": "cold-wave-8732",
"definition": {
"env": {
"PORT": "8080"
},
"experimental": {
"auto_rollback": true
},
"kill_signal": "SIGINT",
"kill_timeout": 5,
"processes": [],
"services": [
{
"concurrency": {
"hard_limit": 25,
"soft_limit": 20,
"type": "connections"
},
"http_checks": [],
"internal_port": 8080,
"ports": [
{
"force_https": true,
"handlers": [
"http"
],
"port": 80
},
{
"handlers": [
"tls",
"http"
],
"port": 443
}
],
"processes": [
"app"
],
"protocol": "tcp",
"script_checks": [],
"tcp_checks": [
{
"grace_period": "1s",
"interval": "15s",
"restart_limit": 0,
"timeout": "2s"
}
]
}
]
}
}
}
DEBUG {}
DEBUG <-- 200 https://api.fly.io/graphql (168.03ms)
{
"data": {
"app": {
"parseConfig": {
"definition": {
"kill_timeout": 5,
"kill_signal": "SIGINT",
"processes": [],
"experimental": {
"auto_rollback": true
},
"services": [
{
"processes": [
"app"
],
"protocol": "tcp",
"internal_port": 8080,
"concurrency": {
"soft_limit": 20,
"hard_limit": 25,
"type": "connections"
},
"ports": [
{
"port": 80,
"handlers": [
"http"
],
"force_https": true
},
{
"port": 443,
"handlers": [
"tls",
"http"
]
}
],
"tcp_checks": [
{
"interval": "15s",
"timeout": "2s",
"grace_period": "1s",
"restart_limit": 0
}
],
"http_checks": [],
"script_checks": []
}
],
"env": {
"PORT": "8080"
}
},
"valid": true,
"errors": [],
"services": [
{
"description": "TCP 80/443 ⇢ 8080"
}
]
}
}
}
}
--> Verified app config
==> Building image
DEBUG trying remote docker daemon
DEBUG --> POST https://api.fly.io/graphql
{
"query": "mutation($input: EnsureMachineRemoteBuilderInput!) { ensureMachineRemoteBuilder(input: $input) { machine { id state ips { nodes { family kind ip } } }, app { name organization { id slug } } } }",
"variables": {
"input": {
"appName": "cold-wave-8732",
"organizationId": null
}
}
}
DEBUG {}
DEBUG <-- 200 https://api.fly.io/graphql (608.81ms)
{
"data": {
"ensureMachineRemoteBuilder": {
"machine": {
"id": "6e82933c613087",
"state": "started",
"ips": {
"nodes": [
{
"family": "v6",
"kind": "public",
"ip": "2605:4c40:119:6d3a:0:c26:dbed:1"
},
{
"family": "v4",
"kind": "private",
"ip": "172.19.131.42"
},
{
"family": "v6",
"kind": "privatenet",
"ip": "fdaa:1:26c0:a7b:c6ef:c26:dbed:2"
}
]
}
},
"app": {
"name": "fly-builder-polished-thunder-9963",
"organization": {
"id": "D307G6NwgR0z2u4vPG23jYy8a3c1LYmkl",
"slug": "personal"
}
}
}
}
}
DEBUG checking ip &{Family:v6 Kind:public IP:2605:4c40:119:6d3a:0:c26:dbed:1 MaskSize:0}
DEBUG checking ip &{Family:v4 Kind:private IP:172.19.131.42 MaskSize:0}
DEBUG checking ip &{Family:v6 Kind:privatenet IP:fdaa:1:26c0:a7b:c6ef:c26:dbed:2 MaskSize:0}
Waiting for remote builder fly-builder-polished-thunder-9963... 🌍DEBUG --> POST https://api.fly.io/graphql
{
"query": "query ($appName: String!) { appbasic:app(name: $appName) { id name platformVersion organization { id slug } } }",
"variables": {
"appName": "cold-wave-8732"
}
}
DEBUG {}
DEBUG <-- 200 https://api.fly.io/graphql (137.4ms)
{
"data": {
"appbasic": {
"id": "cold-wave-8732",
"name": "cold-wave-8732",
"platformVersion": null,
"organization": {
"id": "D307G6NwgR0z2u4vPG23jYy8a3c1LYmkl",
"slug": "personal"
}
}
}
}
DEBUG --> POST https://api.fly.io/graphql
{
"query": "mutation($input: ValidateWireGuardPeersInput!) { validateWireGuardPeers(input: $input) { invalidPeerIps } }",
"variables": {
"input": {
"peerIps": [
"fdaa:1:26c0:a7b:16a9:0:a:2"
]
}
}
}
DEBUG {}
Waiting for remote builder fly-builder-polished-thunder-9963... 🌎DEBUG <-- 200 https://api.fly.io/graphql (128.75ms)
{
"data": {
"validateWireGuardPeers": {
"invalidPeerIps": []
}
}
}
Waiting for remote builder fly-builder-polished-thunder-9963... 🌏DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
Waiting for remote builder fly-builder-polished-thunder-9963... 🌍DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
Waiting for remote builder fly-builder-polished-thunder-9963... 🌎DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
Waiting for remote builder fly-builder-polished-thunder-9963... 🌏DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder available, but pinging again in 50ms to be sure
Waiting for remote builder fly-builder-polished-thunder-9963... 🌍DEBUG Remote builder available, but pinging again in 50ms to be sure
DEBUG Remote builder is ready to build!
Remote builder fly-builder-polished-thunder-9963 ready
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG --> POST https://api.fly.io/graphql
{
"query": "\nmutation ResolverCreateBuild ($input: CreateBuildInput!) {\n\tcreateBuild(input: $input) {\n\t\tid\n\t\tstatus\n\t}\n}\n",
"variables": {
"input": {
"appName": "cold-wave-8732",
"builderType": "remote",
"clientMutationId": "",
"imageOpts": {
"buildArgs": {},
"buildPacks": [
"gcr.io/paketo-buildpacks/go"
],
"builder": "paketobuildpacks/builder:base",
"builtIn": "",
"builtInSettings": {},
"dockerfilePath": "",
"extraBuildArgs": null,
"imageLabel": "",
"imageRef": "",
"noCache": false,
"publish": true,
"tag": "registry.fly.io/cold-wave-8732:deployment-01GQ277J5D759EB6STY4E4A3W0",
"target": ""
},
"machineId": "",
"strategiesAvailable": [
"Buildpacks",
"Dockerfile",
"Builtin"
]
}
},
"operationName": "ResolverCreateBuild"
}
DEBUG {0xc00055cdb0}
DEBUG <-- 200 https://api.fly.io/graphql (193.67ms)
{
"data": {
"createBuild": {
"id": "726284",
"status": "started"
}
}
}
DEBUG Trying 'Buildpacks' strategy
==> Building image with Buildpacks
--> docker host: 20.10.12 linux x86_64
Pulling image index.docker.io/paketobuildpacks/builder:base
base: Pulling from paketobuildpacks/builder
Digest: sha256:ff9f92b8fd6377186c3c40014acf72c14362f69167dc285a26ecc555a4320357
Status: Image is up to date for paketobuildpacks/builder:base
Selected run image index.docker.io/paketobuildpacks/run:base-cnb
Pulling image index.docker.io/paketobuildpacks/run:base-cnb
base-cnb: Pulling from paketobuildpacks/run
Digest: sha256:c6dfea2099e2a4ef418363a0579c47dfbb3c9aaf8787c029789dee730275910c
Status: Image is up to date for paketobuildpacks/run:base-cnb
Downloading buildpack from image: gcr.io/paketo-buildpacks/go
Pulling image gcr.io/paketo-buildpacks/go
latest: Pulling from paketo-buildpacks/go
Digest: sha256:3c091e92643fe2674aa9b2572983c0e46b47a2aadbf2e0a3bf0891cab3ad55c6
Status: Image is up to date for gcr.io/paketo-buildpacks/go:latest
Adding buildpack paketo-buildpacks/go version 4.0.1 to builder
Adding buildpack paketo-buildpacks/image-labels version 4.3.0 to builder
Adding buildpack paketo-buildpacks/procfile version 5.5.0 to builder
Adding buildpack paketo-buildpacks/watchexec version 2.7.0 to builder
Adding buildpack paketo-buildpacks/git version 1.0.0 to builder
Adding buildpack paketo-buildpacks/go-build version 2.0.8 to builder
Adding buildpack paketo-buildpacks/go-dist version 2.2.3 to builder
Adding buildpack paketo-buildpacks/go-mod-vendor version 1.0.7 to builder
Adding buildpack paketo-buildpacks/ca-certificates version 3.5.1 to builder
Adding buildpack paketo-buildpacks/environment-variables version 4.4.0 to builder
Setting custom order
Creating builder with the following buildpacks:
-> paketo-buildpacks/dotnet-core@0.28.1
-> paketo-buildpacks/dotnet-core-sdk@0.12.1
-> paketo-buildpacks/icu@0.6.1
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/vsdbg@0.1.1
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/dotnet-core-aspnet-runtime@0.2.1
-> paketo-buildpacks/dotnet-publish@0.11.0
-> paketo-buildpacks/environment-variables@4.4.0
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/node-engine@0.20.0
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/dotnet-execute@0.13.1
-> paketo-buildpacks/go@4.0.1
-> paketo-buildpacks/git@1.0.0
-> paketo-buildpacks/go-build@2.0.8
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/environment-variables@4.4.0
-> paketo-buildpacks/go-dist@2.2.3
-> paketo-buildpacks/go-mod-vendor@1.0.7
-> paketo-buildpacks/java-native-image@7.44.1
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/gradle@6.10.0
-> paketo-buildpacks/spring-boot@5.22.1
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/upx@3.3.0
-> paketo-buildpacks/bellsoft-liberica@9.10.1
-> paketo-buildpacks/executable-jar@6.5.0
-> paketo-buildpacks/leiningen@4.4.0
-> paketo-buildpacks/maven@6.12.0
-> paketo-buildpacks/native-image@5.8.0
-> paketo-buildpacks/environment-variables@4.4.0
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/sbt@6.9.1
-> paketo-buildpacks/syft@1.23.0
-> paketo-buildpacks/java@8.6.0
-> paketo-buildpacks/sbt@6.9.1
-> paketo-buildpacks/spring-boot@5.22.1
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/google-stackdriver@7.1.0
-> paketo-buildpacks/jattach@1.2.0
-> paketo-buildpacks/maven@6.12.0
-> paketo-buildpacks/azure-application-insights@5.9.4
-> paketo-buildpacks/datadog@3.3.0
-> paketo-buildpacks/dist-zip@5.4.0
-> paketo-buildpacks/java-memory-assistant@1.2.0
-> paketo-buildpacks/leiningen@4.4.0
-> paketo-buildpacks/liberty@3.2.0
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/syft@1.23.0
-> paketo-buildpacks/apache-tomee@1.5.0
-> paketo-buildpacks/executable-jar@6.5.0
-> paketo-buildpacks/gradle@6.10.0
-> paketo-buildpacks/encrypt-at-rest@4.3.3
-> paketo-buildpacks/environment-variables@4.4.0
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/apache-tomcat@7.11.0
-> paketo-buildpacks/bellsoft-liberica@9.10.1
-> paketo-buildpacks/clojure-tools@2.6.1
-> paketo-buildpacks/nodejs@0.28.0
-> paketo-buildpacks/datadog@3.0.0
-> paketo-buildpacks/npm-install@0.10.9
-> paketo-buildpacks/yarn-install@0.10.10
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/yarn-start@0.8.7
-> paketo-buildpacks/environment-variables@4.3.0
-> paketo-buildpacks/node-module-bom@0.4.4
-> paketo-buildpacks/npm-start@0.10.4
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/node-engine@0.20.0
-> paketo-buildpacks/node-run-script@0.5.3
-> paketo-buildpacks/yarn@0.8.6
-> paketo-buildpacks/ca-certificates@3.5.0
-> paketo-buildpacks/node-start@0.8.7
-> paketo-buildpacks/procfile@5.4.0
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/python@2.7.2
-> paketo-buildpacks/pip-install@0.5.7
-> paketo-buildpacks/pip@0.16.2
-> paketo-buildpacks/conda-env-update@0.7.2
-> paketo-buildpacks/miniconda@0.7.6
-> paketo-buildpacks/poetry@0.5.3
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/poetry-run@0.4.8
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/pipenv@1.13.1
-> paketo-buildpacks/environment-variables@4.4.0
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/pipenv-install@0.6.8
-> paketo-buildpacks/poetry-install@0.3.7
-> paketo-buildpacks/python-start@0.14.1
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/cpython@1.8.2
-> paketo-buildpacks/ruby@0.23.1
-> paketo-buildpacks/bundle-install@0.6.2
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/passenger@0.8.3
-> paketo-buildpacks/unicorn@0.4.13
-> paketo-buildpacks/environment-variables@4.4.0
-> paketo-buildpacks/rails-assets@0.8.3
-> paketo-buildpacks/rake@0.4.13
-> paketo-buildpacks/yarn@0.8.6
-> paketo-buildpacks/bundler@0.7.1
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/mri@0.10.3
-> paketo-buildpacks/puma@0.4.13
-> paketo-buildpacks/rackup@0.4.13
-> paketo-buildpacks/thin@0.5.13
-> paketo-buildpacks/node-engine@0.20.0
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/yarn-install@0.10.10
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/web-servers@0.5.0
-> paketo-buildpacks/yarn-install@0.10.10
-> paketo-buildpacks/httpd@0.7.0
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/npm-install@0.10.9
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/yarn@0.8.6
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/environment-variables@4.4.0
-> paketo-buildpacks/nginx@0.12.0
-> paketo-buildpacks/node-engine@0.20.0
-> paketo-buildpacks/node-run-script@0.5.3
-> paketo-buildpacks/go@4.0.1
-> paketo-buildpacks/image-labels@4.3.0
-> paketo-buildpacks/procfile@5.5.0
-> paketo-buildpacks/watchexec@2.7.0
-> paketo-buildpacks/git@1.0.0
-> paketo-buildpacks/go-build@2.0.8
-> paketo-buildpacks/go-dist@2.2.3
-> paketo-buildpacks/go-mod-vendor@1.0.7
-> paketo-buildpacks/ca-certificates@3.5.1
-> paketo-buildpacks/environment-variables@4.4.0
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
Buildpack paketo-buildpacks/go@4.0.1 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/image-labels@4.3.0 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/procfile@5.5.0 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/watchexec@2.7.0 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/git@1.0.0 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/go-build@2.0.8 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/go-dist@2.2.3 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/go-mod-vendor@1.0.7 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/ca-certificates@3.5.1 already exists on builder with same contents, skipping...
Buildpack paketo-buildpacks/environment-variables@4.4.0 already exists on builder with same contents, skipping...
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
DEBUG Sending remote builder heartbeat pulse to http://fdaa:1:26c0:a7b:c6ef:c26:dbed:2:8080/flyio/v1/extendDeadline...
DEBUG Remote builder heartbeat response: 202 Accepted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment