From: Aleš Date: Thu, 6 Jan 2022 02:04:59 +0000 (+0100) Subject: kresd_controller: supervisord: rundir config fix X-Git-Tag: v6.0.0a1~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee0788ca936554210ca2769db1d4e189f15c48cc;p=thirdparty%2Fknot-resolver.git kresd_controller: supervisord: rundir config fix --- diff --git a/manager/knot_resolver_manager/kresd_controller/supervisord/__init__.py b/manager/knot_resolver_manager/kresd_controller/supervisord/__init__.py index ed15daee0..ae4267242 100644 --- a/manager/knot_resolver_manager/kresd_controller/supervisord/__init__.py +++ b/manager/knot_resolver_manager/kresd_controller/supervisord/__init__.py @@ -92,7 +92,7 @@ async def _write_config_file(config: KresConfig, instances: Set["SupervisordSubp config=SupervisordConfig( unix_http_server=supervisord_sock_file(config), pid_file=supervisord_pid_file(config), - workdir=str(config.server.management.rundir.to_path().absolute()), + workdir=str(config.server.rundir.to_path().absolute()), logfile=supervisord_log_file(config), ), )