Skip to content

Commit 3b250ab

Browse files
authored
Fix environment variable type (#912)
1 parent db11acc commit 3b250ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark_runner/main/environment_variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __init__(self):
8989
# Verification only, without running or deleting any resources, default False
9090
self._environment_variables_dict['verification_only'] = EnvironmentVariables.get_boolean_from_environment('VERIFICATION_ONLY', False)
9191
# Verification while upgrade, e.g. 4.15.23
92-
self._environment_variables_dict['wait_for_upgrade_version'] = EnvironmentVariables.get_boolean_from_environment('WAIT_FOR_UPGRADE_VERSION', '')
92+
self._environment_variables_dict['wait_for_upgrade_version'] = EnvironmentVariables.get_env('WAIT_FOR_UPGRADE_VERSION', '')
9393

9494
# default parameter - change only if needed
9595
# Parameters below related to 'run_workload()'

0 commit comments

Comments
 (0)