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 4696137 commit 4fcee50Copy full SHA for 4fcee50
internal/store/store.go
@@ -59,12 +59,12 @@ func FactoryFromEnv(ctx context.Context) (Factory, error) {
59
}
60
61
if chosen == "" && len(candidates) == 0 {
62
- available := slices.Collect(maps.Keys(registry.Registry))
+ available := slices.Sorted(maps.Keys(registry.Registry))
63
return nil, fmt.Errorf(
64
"can't find environment settings to select between store backends: %v", available)
65
66
if chosen == "" {
67
- options := slices.Collect(maps.Keys(candidates))
+ options := slices.Sorted(maps.Keys(candidates))
68
69
"environment settings match multiple store backends: %v", options)
70
0 commit comments