diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b4908298..016ffd683 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/covalent_dispatcher/_cli/service.py b/covalent_dispatcher/_cli/service.py index 24fd6415a..b0aecd32a 100644 --- a/covalent_dispatcher/_cli/service.py +++ b/covalent_dispatcher/_cli/service.py @@ -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)