You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfmt.Errorf("error applying upgrade for config version %s: %w", upgrader.Version.String(), err)
63
+
returnnil, fmt.Errorf("error applying upgrade for config version %s: %w", upgrader.Version.String(), err)
64
64
}
65
65
}
66
66
67
-
returnnil
67
+
returnserializedConfig, nil
68
68
69
69
}
70
70
@@ -94,12 +94,12 @@ func getVersionFromConfig(serializedConfig map[string]any) (*version.Version, er
94
94
if!ok {
95
95
returnnil, fmt.Errorf("detected a Smart Node v1 config; it has an entry named [%s.%s] but it is not a string, it's a %s", legacyRootConfigName, legacyVersionKey, reflect.TypeOf(configVersionEntry))
0 commit comments