odyssey: fix config error message

This commit is contained in:
Dmitry Simonenko 2018-08-08 16:27:25 +03:00
parent 3eb948af76
commit 17dea01e1d
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ int od_config_validate(od_config_t *config, od_logger_t *logger)
if (storage == NULL) {
od_error(logger, "config", NULL, NULL,
"route '%s.%s': no route storage '%s' found",
route->db_name, route->user_name);
route->db_name, route->user_name, route->storage_name);
return -1;
}
route->storage = od_configstorage_copy(storage);