Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
In ReduceTask.java, The parameters for method calls for getInputStream(URLConnection connection, int connectionTimeout, int readTimeout) should be in that order. Now it is
InputStream input = getInputStream(connection, DEFAULT_READ_TIMEOUT, STALLED_COPY_TIMEOUT);
It works now because both DEFAULT_READ_TIMEOUT and STALLED_COPY_TIMEOUT have the same value.