Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
revert changing capitalization of has_xcp valie
Browse files Browse the repository at this point in the history
  • Loading branch information
addyess committed Oct 27, 2023
1 parent 2726218 commit 1d2631a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ops/ops/interface_kube_control/provides.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def set_dns_port(self, port) -> None:

def set_has_external_cloud_provider(self, has_xcp) -> None:
"""Send indicator to remote units that an external cloud provider is in use."""
value = str(has_xcp).title()
value = str(has_xcp).lower()
for relation in self.relations:
relation.data[self.unit]["has-xcp"] = value

Expand Down

0 comments on commit 1d2631a

Please sign in to comment.