From c54838ad6ff4fae975c265cda13f7f24c5b39f26 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 5 Mar 2025 20:21:51 -0600 Subject: [PATCH] fix display --- repertory/repertory/include/cli/mount.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/repertory/repertory/include/cli/mount.hpp b/repertory/repertory/include/cli/mount.hpp index e4ef7ce5..a87cdd16 100644 --- a/repertory/repertory/include/cli/mount.hpp +++ b/repertory/repertory/include/cli/mount.hpp @@ -120,10 +120,10 @@ mount(std::vector args, std::string data_directory, std::cout << "Initializing " << app_config::get_provider_display_name(prov) << (unique_id.empty() ? "" - : (prov == provider_type::s3 || prov == provider_type::sia) - ? " [" + unique_id + ']' - : " [" + remote_host + ':' + - std::to_string(remote_port) + ']') + : (prov == provider_type::remote) + ? " [" + remote_host + ':' + + std::to_string(remote_port) + ']' + : " [" + unique_id + ']') << " Drive" << std::endl; if (prov == provider_type::remote) { std::uint16_t port{0U};