summaryrefslogtreecommitdiffstats
path: root/tools/sharding_supervisor
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sharding_supervisor')
-rwxr-xr-xtools/sharding_supervisor/sharding_supervisor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/sharding_supervisor/sharding_supervisor.py b/tools/sharding_supervisor/sharding_supervisor.py
index 4ed9580..a95b586 100755
--- a/tools/sharding_supervisor/sharding_supervisor.py
+++ b/tools/sharding_supervisor/sharding_supervisor.py
@@ -81,7 +81,7 @@ def AppendToGTestOutput(gtest_args, value):
args = gtest_args[:]
current_value = GetGTestOutput(args)
if not current_value:
- return
+ return gtest_args
current_arg = '--gtest_output=' + current_value
args.remove(current_arg)
@@ -93,7 +93,7 @@ def RemoveGTestOutput(gtest_args):
args = gtest_args[:]
current_value = GetGTestOutput(args)
if not current_value:
- return
+ return gtest_args
args.remove('--gtest_output=' + current_value)
return args