depot_query: respond to config updates

This commit is contained in:
Norman Feske 2017-12-18 16:53:15 +01:00 committed by Christian Helmuth
parent 9e0dafbd93
commit a36def9a10

View File

@ -255,7 +255,11 @@ struct Depot_query::Main
}
}
Main(Env &env) : _env(env) { _handle_config(); }
Main(Env &env) : _env(env)
{
_config.sigh(_config_handler);
_handle_config();
}
};