Skip to content

Commit

Permalink
Enable topology spread constraints by default for tron
Browse files Browse the repository at this point in the history
I debated getting rid of this toggle entirely, but I guess it's nice to
keep around just in case?

I'll also follow this up with a Puppet PR to clean things up there
  • Loading branch information
nemacysts committed Nov 14, 2024
1 parent 7d18d52 commit aebbe30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paasta_tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2823,7 +2823,7 @@ def get_enable_automated_redeploys_default(self) -> bool:
return self.config_dict.get("enable_automated_redeploys_default", False)

def get_enable_tron_tsc(self) -> bool:
return self.config_dict.get("enable_tron_tsc", False)
return self.config_dict.get("enable_tron_tsc", True)


def _run(
Expand Down

0 comments on commit aebbe30

Please sign in to comment.