Skip to content

Commit

Permalink
add missed out new line char in deployment link log (#498)
Browse files Browse the repository at this point in the history
* added missed out new line char

* Merge branch 'main' into fix/deployment-link
  • Loading branch information
neel-astro committed Feb 9, 2022
1 parent 537db05 commit 86d49a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airflow/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ services:
- airflow_logs:/usr/local/airflow/logs
healthcheck:
test: curl --fail http://webserver:8080/health || exit 1
interval: 2s
interval: 10s
retries: 50
start_period: 10s
timeout: 10s
Expand Down
2 changes: 1 addition & 1 deletion airflow/include/composeyml.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ services:
- airflow_logs:/usr/local/airflow/logs
healthcheck:
test: curl --fail http://webserver:8080/health || exit 1
interval: 2s
interval: 10s
retries: 50
start_period: 10s
timeout: 10s
Expand Down
2 changes: 1 addition & 1 deletion cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func deployAirflow(path, name, wsID string, prompt bool) error {
}

deploymentLink := buildAstroUIDeploymentLink(name, wsID)
fmt.Printf("Successfully pushed Docker image to Astronomer registry, it can take a few minutes to update the deployment with the new image. Navigate to the Astronomer UI to confirm the state of your deployment (%s).", deploymentLink)
fmt.Printf("Successfully pushed Docker image to Astronomer registry, it can take a few minutes to update the deployment with the new image. Navigate to the Astronomer UI to confirm the state of your deployment (%s).\n", deploymentLink)

return nil
}
Expand Down

0 comments on commit 86d49a3

Please sign in to comment.