Skip to content

Commit

Permalink
Fix migrate credential log message
Browse files Browse the repository at this point in the history
Forgot the word schema from the message! >.<;
  • Loading branch information
carolynvs committed Aug 25, 2020
1 parent b28b621 commit 2b68b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ func (m *Manager) migrateCredentials(w io.Writer) error {
continue
}

fmt.Fprintf(w, " - Migrating credential set %s to the new ...\n", cred.Name)
fmt.Fprintf(w, " - Migrating credential set %s to the new schema...\n", cred.Name)
cred.SchemaVersion = credentials.DefaultSchemaVersion

err = credStore.Save(cred)
Expand Down

0 comments on commit 2b68b18

Please sign in to comment.