Fix build problems with create_timeline_replica

This commit is contained in:
Konstantin Knizhnik
2023-06-14 22:14:09 +03:00
parent 9030abb426
commit 77a73ff36f
9 changed files with 107 additions and 83 deletions

View File

@@ -380,6 +380,7 @@ impl PageServerNode {
.map(|x| x.parse::<bool>())
.transpose()
.context("Failed to parse 'gc_feedback' as bool")?,
master_region: settings.remove("master_region").map(|x| x.to_string()),
};
// If tenant ID was not specified, generate one
@@ -479,6 +480,7 @@ impl PageServerNode {
.map(|x| x.parse::<bool>())
.transpose()
.context("Failed to parse 'gc_feedback' as bool")?,
master_region: settings.remove("master_region").map(|x| x.to_string()),
}
};