Skip to content

Commit

Permalink
Merge branch 'develop' into fix-local-tests-tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
kessler-frost authored Aug 28, 2023
2 parents 57fbe6b + d734180 commit 83944f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED]

### Fixed
- Fixed dispatcher address not showing when covalent server starts.

### Operations

- Respecting node version as specified in `.nvmrc` file for tests workflow
Expand Down
3 changes: 3 additions & 0 deletions covalent_dispatcher/_cli/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,9 @@ def start(
console.print(config_table)
console.print("\nServer Status: [green]:heavy_check_mark:[/green] Running", style="bold")

dispatcher_address = f"http://{str(get_config('dispatcher.address'))}:{str(port)}"
console.print(f"\nCovalent UI can be accessed at {dispatcher_address}")

if not no_footer:
console.print("\nFor a summary of the system status, use 'covalent status'")
print_footer(console)
Expand Down

0 comments on commit 83944f9

Please sign in to comment.