Skip to content

Commit a31aff8

Browse files
chrisdev0Chris
andauthored
Fix wrong field returned from ContainerMount#getMode (docker-java#1713)
Co-authored-by: Chris <christofer@quedro.com>
1 parent a135d21 commit a31aff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-java-api/src/main/java/com/github/dockerjava/api/model/ContainerMount.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public ContainerMount withDriver(String driver) {
106106
*/
107107
@CheckForNull
108108
public String getMode() {
109-
return driver;
109+
return mode;
110110
}
111111

112112
/**

0 commit comments

Comments
 (0)