Skip to content

Commit 6419423

Browse files
committedMar 11, 2024·
[#21381] Tools: Set LC_ALL=C.UTF-8 when running pgrep in yb-ctl
Summary: When other processes have UTF-8 characters in their names, pgrep may fail due to expecting a different encoding. This revision fixes the issue by setting the `LC_ALL` environment variable to `C.UTF-8` when invoking `pgrep`. Note that the environment variable is only set for the subprocess which `pgrep` runs in; this change does not modify it anywhere else. Jira: DB-10275 Test Plan: ``` bin/yb-ctl create ``` Reviewers: mbautin Reviewed By: mbautin Differential Revision: https://phorge.dev.yugabyte.com/D33008
1 parent 1419d93 commit 6419423

File tree

1 file changed

+2
-1
lines changed
  • scripts/installation/bin

1 file changed

+2
-1
lines changed
 

‎scripts/installation/bin/yb-ctl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,8 @@ class ClusterControl:
12841284
pgrep_full_command_output_arg = '--list-full'
12851285
pgrep_regex_str = self.get_pgrep_regex(daemon_id)
12861286
pgrep_output = subprocess.check_output(
1287-
["pgrep", pgrep_full_command_output_arg, "-f", pgrep_regex_str]
1287+
["pgrep", pgrep_full_command_output_arg, "-f", pgrep_regex_str],
1288+
env={"LC_ALL": "C.UTF-8"}
12881289
).strip().decode('utf-8')
12891290

12901291
data_dirs_re_match = FS_DATA_DIRS_ARG_RE.search(pgrep_output)

0 commit comments

Comments
 (0)
Please sign in to comment.