Skip to content

Commit

Permalink
Merge pull request #170 from olcf/nick-fix-user-params-obtain-from-env
Browse files Browse the repository at this point in the history
Fixed user obtain from env setting
  • Loading branch information
ddietz89 authored May 8, 2024
2 parents 0b3ae3c + b815906 commit eb059f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harness/machine_types/rgt_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def _reconcile_with_shell_environment_variables(self):
key_modified = rgt_variable_name_modification(key)
tmp_value = os.getenv(key_modified)
if tmp_value :
self.__builtin_params[key] = tmp_value
self.__user_params[key] = tmp_value
else :
error_message = "Unable to reconcile shell environmental variables and self.__user_params[{key}]={value}.".format(key=key,value=value)
raise ErrorRgtParameterReconcile(error_message)
Expand Down

0 comments on commit eb059f5

Please sign in to comment.