From da14e89cad2b02d839a2f5c22091062b46fd7098 Mon Sep 17 00:00:00 2001 From: Terrell Russell Date: Wed, 24 Jan 2024 16:41:06 -0500 Subject: [PATCH] [#19] error message cleanup --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index a8039d1..4a1201f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -278,18 +278,18 @@ nlohmann::json load_configuration(const std::string_view _config_path, unsigned << "Consider setting up the static_authentication_plugin, add a section like" << std::endl << R"("static_authentication_resolver": {)" R"(""name": "static_authentication_resolver",)" - R"(""users": {"": {"username": "","secret_key": ""}})" + R"(""users": {"": {"username": "","secret_key": ""}})" "}" << std::endl << "to the 'plugins' object in your config.json" << std::endl; } if (!irods::s3::plugins::bucket_plugin_loaded()) { std::cout << "No bucket resolution plugin is specified or loaded" << std::endl - << "Consider setting up the static_authentication_plugin, add a section like" << std::endl + << "Consider setting up the static_bucket_plugin, add a section like" << std::endl << R"("static_bucket_resolver": {)" R"("name": "static_bucket_resolver",)" R"("mappings": {)" - R"(": "")" + R"(": "")" "}" << std::endl << "to the 'plugins' object in your config.json" << std::endl;