Skip to content

Commit

Permalink
Update ComposeFileWriter.java
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez authored Feb 29, 2024
1 parent c93cdd9 commit 9038e15
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ private void writerServiceLabels(IndentingWriter writer, Map<String, String> lab
}
writer.println("labels:");
writer.indented(() -> {
for (Map.Entry<String, String> env : labels.entrySet()) {
writer.println("- \"%s=%s\"".formatted(env.getKey(), env.getValue()));
for (Map.Entry<String, String> label : labels.entrySet()) {
writer.println("- \"%s=%s\"".formatted(label.getKey(), label.getValue()));
}
});
}
Expand Down

0 comments on commit 9038e15

Please sign in to comment.