We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91cb1d0 commit 50bdd64Copy full SHA for 50bdd64
chaoscenter/graphql/server/server.go
@@ -69,9 +69,10 @@ func validateVersion() error {
69
}
70
return nil
71
72
- if dbVersion.Value.(string) != currentVersion {
73
- return fmt.Errorf("control plane needs to be upgraded from version %v to %v", dbVersion.Value.(string), currentVersion)
74
- }
+ // This check will be added back once DB upgrader job becomes functional
+ // if dbVersion.Value.(string) != currentVersion {
+ // return fmt.Errorf("control plane needs to be upgraded from version %v to %v", dbVersion.Value.(string), currentVersion)
75
+ // }
76
77
78
0 commit comments