Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kokosing committed Oct 6, 2020
1 parent 6740ece commit 88f0390
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,10 @@ private static void setContainerAutoRemove(CreateContainerCmd createContainerCmd
private static List<Ulimit> standardUlimits()
{
return ImmutableList.of(
// Number of open file descriptors
new Ulimit("nofile", 65535L, 65535L),
// Number of processes
new Ulimit("nproc", 8096L, 8096L));
// Number of open file descriptors
new Ulimit("nofile", 65535L, 65535L),
// Number of processes
new Ulimit("nproc", 8096L, 8096L));
}

public Builder configureContainer(String logicalName, Consumer<DockerContainer> configurer)
Expand Down

0 comments on commit 88f0390

Please sign in to comment.