Check if this catalog has been bootstrapped (has a cluster_id).
(&self)
| 107 | |
| 108 | /// Check if this catalog has been bootstrapped (has a cluster_id). |
| 109 | pub fn is_bootstrapped(&self) -> Result<bool> { |
| 110 | self.load_cluster_id().map(|id| id.is_some()) |
| 111 | } |
| 112 | |
| 113 | /// Persist the cluster epoch (the leader-bumped monotonic fence |
| 114 | /// token stamped on every Raft RPC). Overwrites any prior value. |
no test coverage detected