1
0
Fork 0
forked from External/ergo
Enhancements to NS SUSPEND, including stored metadata and the ability
to list suspensions
This commit is contained in:
Shivaram Lingamneni 2020-10-27 11:24:17 -04:00
parent dc456bd6a4
commit 1f6afa31d6
5 changed files with 194 additions and 29 deletions

View file

@ -857,7 +857,7 @@ func schemaChangeV16ToV17(config *Config, tx *buntdb.Tx) error {
func getSchemaChange(initialVersion int) (result SchemaChange, ok bool) {
for _, change := range allChanges {
if initialVersion == change.InitialVersion {
return result, true
return change, true
}
}
return