Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
schulzh committed Feb 11, 2025
1 parent ad0b052 commit 32fc8fc
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,11 @@ static Map<String, Object> toApplicationYaml(_ApplicationManifestCommon applicat
if (null != disk) {
putIfPresent(yaml, "disk_quota", applicationManifest.getDisk().toString() + "M");
}
putIfPresent(yaml, "docker", applicationManifest.getDocker(), ApplicationManifestUtilsCommon::toDockerYaml);
putIfPresent(
yaml,
"docker",
applicationManifest.getDocker(),
ApplicationManifestUtilsCommon::toDockerYaml);
putIfPresent(yaml, "domains", applicationManifest.getDomains());
putIfPresent(yaml, "env", applicationManifest.getEnvironmentVariables());
putIfPresent(
Expand Down

0 comments on commit 32fc8fc

Please sign in to comment.