Skip to content

Commit

Permalink
fixup! Add timeout for DataExchange (TransfertFiles), set default tim…
Browse files Browse the repository at this point in the history
…eout for AbstractFSURL (30 sec) #141
  • Loading branch information
hdsdi3g committed Jun 23, 2023
1 parent 76c81e0 commit 34f8205
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public DataExchangeInOutStream() {
this(Duration.ofSeconds(30));
}

public DataExchangeInOutStream(final Duration timeOut) {// TODO use with other calls
public DataExchangeInOutStream(final Duration timeOut) {
this.timeOut = timeOut;
internalInputStream = new InternalInputStream();
internalOutputStream = new InternalOutputStream();
Expand Down

0 comments on commit 34f8205

Please sign in to comment.