Skip to content

Commit afe2034

Browse files
committed
chore: use '=' for separating kv params
1 parent 7577a95 commit afe2034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/postgresConfig/update/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func Run(ctx context.Context, projectRef string, values []string, replaceOverrid
1616
// 1. Prepare config overrides
1717
newConfigOverrides := make(map[string]string)
1818
for _, config := range values {
19-
splits := strings.Split(config, ":")
19+
splits := strings.Split(config, "=")
2020
if len(splits) != 2 {
2121
return fmt.Errorf("expected config value in key:value format, received: '%s'", config)
2222
}

0 commit comments

Comments
 (0)