Skip to content

Commit

Permalink
Patch: Telemetry Enabled by Default
Browse files Browse the repository at this point in the history
Sets the default value of the "enable telemetry" flag to on. Currently
this will enable telemetry system wide until finer grain control can be
established with CrayLabs#460
  • Loading branch information
MattToast committed Feb 7, 2024
1 parent b84b49f commit f496399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartsim/_core/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def telemetry_frequency(self) -> int:

@property
def telemetry_enabled(self) -> bool:
return int(os.environ.get("SMARTSIM_FLAG_TELEMETRY", "0")) > 0
return int(os.environ.get("SMARTSIM_FLAG_TELEMETRY", "1")) > 0

@property
def telemetry_cooldown(self) -> int:
Expand Down

0 comments on commit f496399

Please sign in to comment.