Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@ func LoadAtlasCLIConfigWithVersion(expectedVersion int64) (*Profile, error) {
}

if !configStore.IsSecure() && !SilenceStorageWarning() {
fmt.Fprintf(os.Stderr, `Warning: Secure storage is not available, falling back to insecure storage

To disable this alert, run "atlas config set silence_storage_warning true"`)
fmt.Fprintf(os.Stderr, `
Warning: Secure storage is not available, falling back to insecure storage
To disable this alert, run "atlas config set silence_storage_warning true"
`)
}

profile := NewProfile(DefaultProfile, configStore)
Expand Down
Loading