Skip to content

Commit 62beea4

Browse files
committed
Fix leftovers
1 parent 783972f commit 62beea4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/com/github/dockerjava/core/command/CreateContainerCmdImpl.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ public Integer getStopTimeout() {
482482
@CheckForNull
483483
@Override
484484
@Deprecated
485+
@JsonIgnore
485486
public Ulimit[] getUlimits() {
486487
return hostConfig.getUlimits();
487488
}
@@ -1024,8 +1025,10 @@ public CreateContainerCmd withLinks(List<Link> links) {
10241025
}
10251026

10261027
@Override
1028+
@Deprecated
10271029
public CreateContainerCmd withLogConfig(LogConfig logConfig) {
1028-
return null;
1030+
hostConfig.withLogConfig(logConfig);
1031+
return this;
10291032
}
10301033

10311034
@Override

0 commit comments

Comments
 (0)