Skip to content

Commit

Permalink
enable AUTO_EXTEND_POOLS by default (#1897)
Browse files Browse the repository at this point in the history
  • Loading branch information
xmonader committed Dec 22, 2020
1 parent f4c27fb commit 24e0716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jumpscale/packages/admin/actors/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def get_developer_options(self) -> str:
over_provision = j.core.config.set_default("OVER_PROVISIONING", False)
explorer_logs = j.core.config.set_default("EXPLORER_LOGS", False)
escalation_emails = j.core.config.set_default("ESCALATION_EMAILS_ENABLED", False)
auto_extend_pools = j.core.config.set_default("AUTO_EXTEND_POOLS_ENABLED", False)
auto_extend_pools = j.core.config.set_default("AUTO_EXTEND_POOLS_ENABLED", True)
sort_nodes_by_sru = j.core.config.set_default("SORT_NODES_BY_SRU", False)
return j.data.serializers.json.dumps(
{
Expand Down

0 comments on commit 24e0716

Please sign in to comment.