diff options
author | Alex Auvolat <alex@adnab.me> | 2023-11-09 13:34:14 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-11-09 13:34:14 +0100 |
commit | 19ef1ec8e7fee3a6c670e6e35dfcc83f0801e604 (patch) | |
tree | c05c883a4c02c443987c466b49313062c92bf58c /src/rpc/layout/schema.rs | |
parent | 8a2b1dd422fb57abe611d8c1cf3cb0b55f487189 (diff) | |
download | garage-19ef1ec8e7fee3a6c670e6e35dfcc83f0801e604.tar.gz garage-19ef1ec8e7fee3a6c670e6e35dfcc83f0801e604.zip |
layout: more refactoring
Diffstat (limited to 'src/rpc/layout/schema.rs')
-rw-r--r-- | src/rpc/layout/schema.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/layout/schema.rs b/src/rpc/layout/schema.rs index c5b9b1d3..d587a6cb 100644 --- a/src/rpc/layout/schema.rs +++ b/src/rpc/layout/schema.rs @@ -226,7 +226,7 @@ mod v010 { } /// The history of cluster layouts - #[derive(Clone, Debug, Serialize, Deserialize)] + #[derive(Clone, Debug, Serialize, Deserialize, PartialEq)] pub struct LayoutHistory { /// The versions currently in use in the cluster pub versions: Vec<LayoutVersion>, @@ -241,7 +241,7 @@ mod v010 { } /// The tracker of acknowlegments and data syncs around the cluster - #[derive(Clone, Debug, Serialize, Deserialize, Default)] + #[derive(Clone, Debug, Serialize, Deserialize, Default, PartialEq)] pub struct UpdateTrackers { /// The highest layout version number each node has ack'ed pub ack_map: UpdateTracker, @@ -253,7 +253,7 @@ mod v010 { } /// The history of cluster layouts - #[derive(Clone, Debug, Serialize, Deserialize, Default)] + #[derive(Clone, Debug, Serialize, Deserialize, Default, PartialEq)] pub struct UpdateTracker(pub HashMap<Uuid, u64>); impl garage_util::migrate::Migrate for LayoutHistory { |