Skip to content

Commit 212c1fd

Browse files
MasterShellCommand: Logging environment is not useful
1 parent 2acc318 commit 212c1fd

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

common_factories.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ def addS3Tests(factory, mtrDbPool):
478478
factory.addStep(
479479
steps.MasterShellCommand(
480480
name="Create minio S3 bucket",
481+
logEnviron=False,
481482
alwaysRun=True,
482483
command=[
483484
"mc",
@@ -530,6 +531,7 @@ def addS3Tests(factory, mtrDbPool):
530531
steps.MasterShellCommand(
531532
name="Delete minio S3 bucket",
532533
alwaysRun=True,
534+
logEnviron=False,
533535
command=[
534536
"mc",
535537
"rb",

configuration/steps/master.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def __init__(
3535
def generate(self) -> IBuildStep:
3636
return steps.MasterShellCommand(
3737
name=self.name,
38+
logEnviron=False,
3839
command=[*self.prefix_cmd, *self.command.as_cmd_arg()],
3940
interruptSignal=self.interrupt_signal,
4041
**self.options.getopt,

0 commit comments

Comments
 (0)