This commit is contained in:
Adeniyi Stephen Oluwatola 2024-10-28 11:02:50 +01:00 committed by GitHub
commit b26c51f866
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ func toServicePortConfigsMap(s any) (map[any]any, error) {
} }
m := map[any]any{} m := map[any]any{}
for _, p := range ports { for _, p := range ports {
m[p.Published] = p m[p] = p
} }
return m, nil return m, nil
} }