Skip to content

Commit

Permalink
Fix nodes sharing mutable environment variable map
Browse files Browse the repository at this point in the history
Patch by Ariel Weisberg; Reviewed by Joshua McKenszie for CASSANDRA-19551
  • Loading branch information
aweisberg committed Apr 10, 2024
1 parent ac26470 commit f30b7b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccmlib/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def __init__(self,
self.__install_dir = None
self.__global_log_level = None
self.__classes_log_level = {}
self.__environment_variables = environment_variables or {}
self.__environment_variables = environment_variables.copy() or {}
self.__original_java_home = None
self.__conf_updated = False

Expand Down

0 comments on commit f30b7b7

Please sign in to comment.