File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/main/java/com/amihaiemil/docker Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ public Reader follow()
150
150
@ Override
151
151
public Logs stdout () throws IOException , UnexpectedResponseException {
152
152
final Map <String , String > params = new HashMap <>();
153
+ params .putAll (this .options );
153
154
params .put ("stdout" , "true" );
154
155
params .put ("stderr" , "false" );
155
156
return new RtLogs (this .owner , this .client , this .baseUri , params );
@@ -158,6 +159,7 @@ public Logs stdout() throws IOException, UnexpectedResponseException {
158
159
@ Override
159
160
public Logs stderr () throws IOException , UnexpectedResponseException {
160
161
final Map <String , String > params = new HashMap <>();
162
+ params .putAll (this .options );
161
163
params .put ("stdout" , "false" );
162
164
params .put ("stderr" , "true" );
163
165
return new RtLogs (this .owner , this .client , this .baseUri , params );
You can’t perform that action at this time.
0 commit comments