We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05b40eb commit 9a65cf1Copy full SHA for 9a65cf1
src/charm.py
@@ -479,7 +479,9 @@ def _on_peer_relation_changed(self, event: HookEvent):
479
# Update the members of the cluster in the Patroni configuration on this unit.
480
self.update_config()
481
if self._patroni.cluster_system_id_mismatch(unit_name=self.unit.name):
482
- self.unit.status = BlockedStatus("Failed start postgresql. Storage belongs to a foreign cluster")
+ self.unit.status = BlockedStatus(
483
+ "Failed to start postgresql. The storage belongs to a third-party cluster"
484
+ )
485
return
486
except RetryError:
487
self.unit.status = BlockedStatus("failed to update cluster members on member")
0 commit comments