From 0c0781a702e50facb27a04cf8730c6ea4fe887e6 Mon Sep 17 00:00:00 2001 From: Rusty Davis Date: Tue, 5 Mar 2024 12:37:25 -0700 Subject: [PATCH 1/2] Fix locale issue for redis on certain systems --- beeflow/client/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beeflow/client/core.py b/beeflow/client/core.py index 0e0420e8e..cc2054184 100644 --- a/beeflow/client/core.py +++ b/beeflow/client/core.py @@ -228,6 +228,7 @@ def redis(): # strings. env = dict(os.environ) env['LANG'] = 'C' + env['LC_ALL'] = 'C' return subprocess.Popen(cmd, env=env, stdout=log, stderr=log) # Workflow manager and task manager need to be opened with PIPE for their stdout/stderr @@ -251,7 +252,7 @@ def start_slurm_restd(): return mgr -MIN_CHARLIECLOUD_VERSION = (0, 34) +MIN_CHARLIECLOUD_VERSION = (0, 33) def version_str(version): From e61bcf69755c14a829a762c519edf39a7624b78d Mon Sep 17 00:00:00 2001 From: Rusty Davis Date: Mon, 25 Mar 2024 11:46:35 -0600 Subject: [PATCH 2/2] Update min charliecloud version --- beeflow/client/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beeflow/client/core.py b/beeflow/client/core.py index cc2054184..d3eb66b4e 100644 --- a/beeflow/client/core.py +++ b/beeflow/client/core.py @@ -252,7 +252,7 @@ def start_slurm_restd(): return mgr -MIN_CHARLIECLOUD_VERSION = (0, 33) +MIN_CHARLIECLOUD_VERSION = (0, 34) def version_str(version):