Skip to content

Commit eb45ee7

Browse files
authored
fix(clp-package): Restore missing env var CLP_QUEUE_LOGS_DIR_HOST in the queue service's bundling setup method (fixes #1693). (#1694)
1 parent 00a10a9 commit eb45ee7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

components/clp-package-utils/clp_package_utils/controller.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,11 @@ def _set_up_env_for_queue_bundling(self) -> EnvVarsDict:
220220

221221
env_vars = EnvVarsDict()
222222

223+
# Paths
224+
env_vars |= {
225+
"CLP_QUEUE_LOGS_DIR_HOST": str(logs_dir),
226+
}
227+
223228
return env_vars
224229

225230
def _set_up_env_for_queue(self) -> EnvVarsDict:

0 commit comments

Comments
 (0)