fixes
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...

This commit is contained in:
Scott E. Graves 2024-10-24 20:25:06 -05:00
parent 948b0fdd99
commit 21fd9fe227
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ mount(std::vector<const char *> 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::s3 || prov == provider_type::sia)
? " [" + unique_id + ']'
: " [" + remote_host + ':' +
std::to_string(remote_port) + ']')

View File

@ -107,7 +107,7 @@ protected:
utils::path::combine(test::get_test_config_dir(), {"sia"}),
};
config->set_enable_drive_events(true);
config->set_event_level(event_level::debug);
config->set_event_level(event_level::trace);
config->set_host_config(src_cfg.get_host_config());
}