You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TODO:
-> add other API calls -> getModelStatus, getModelMetadata
*Made:
-> checkResponse
-> stringError
as test_utils functions.
*Rename function checkResponse to checkDummyResponse
*Remove unnecessary includes
*Return to old wait multiplier factor
*Make loadConfig & loadConfigurationWithoutConfigFile protected
to enable using them in test without explicit sleep.
*Minor log improvements in model management.
JIRA:CVS-41787
@@ -648,6 +653,7 @@ Status ModelManager::reloadModelVersions(std::shared_ptr<ovms::Model>& model, st
648
653
}
649
654
650
655
Status ModelManager::reloadModelWithVersions(ModelConfig& config) {
656
+
SPDLOG_LOGGER_DEBUG(modelmanager_logger, "Started applying config changes to model: {}", config.getName());
651
657
auto model = getModelIfExistCreateElse(config.getName());
652
658
if (model->isAnyVersionSubscribed() && config.isDynamicParameterEnabled()) {
653
659
SPDLOG_LOGGER_ERROR(modelmanager_logger, "Requested setting dynamic parameters for model {} but it is used in pipeline. Cannot reload model configuration.", config.getName());
@@ -661,11 +667,9 @@ Status ModelManager::reloadModelWithVersions(ModelConfig& config) {
0 commit comments