fix nil map assignment
This commit is contained in:
parent
48be164b05
commit
71124bbdc7
|
|
@ -874,7 +874,7 @@ class EndToEndTestCase(unittest.TestCase):
|
||||||
"downscaler/downtime_replicas": "0",
|
"downscaler/downtime_replicas": "0",
|
||||||
"owned-by": "acid",
|
"owned-by": "acid",
|
||||||
}
|
}
|
||||||
|
self.eventuallyEqual(lambda: k8s.get_operator_state(), {"0": "idle"}, "Operator does not get in sync")
|
||||||
self.eventuallyTrue(lambda: k8s.check_statefulset_annotations(cluster_label, annotations), "Annotations missing")
|
self.eventuallyTrue(lambda: k8s.check_statefulset_annotations(cluster_label, annotations), "Annotations missing")
|
||||||
|
|
||||||
@timeout_decorator.timeout(TEST_TIMEOUT_SEC)
|
@timeout_decorator.timeout(TEST_TIMEOUT_SEC)
|
||||||
|
|
|
||||||
|
|
@ -274,6 +274,9 @@ func (c *Cluster) getTeamMembers(teamID string) ([]string, error) {
|
||||||
// Returns annotations to be passed to child objects
|
// Returns annotations to be passed to child objects
|
||||||
func (c *Cluster) annotationsSet(annotations map[string]string) map[string]string {
|
func (c *Cluster) annotationsSet(annotations map[string]string) map[string]string {
|
||||||
|
|
||||||
|
if annotations == nil {
|
||||||
|
annotations = make(map[string]string)
|
||||||
|
}
|
||||||
// allow to inherit certain labels from the 'postgres' object
|
// allow to inherit certain labels from the 'postgres' object
|
||||||
if spec, err := c.GetSpec(); err == nil {
|
if spec, err := c.GetSpec(); err == nil {
|
||||||
for k, v := range spec.ObjectMeta.Annotations {
|
for k, v := range spec.ObjectMeta.Annotations {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue