mukund-thakur commented on pull request #2076:
URL: https://github.com/apache/hadoop/pull/2076#issuecomment-649564035


   The test fails only when parallel tests are enabled. 
   mvn -T 1C clean verify -Dtest=none 
-Dit.test=ITestAbfsInputStreamStatistics#testWithNullStreamStatistics
   -- Succeeds 
   mvn -T 1C -Dparallel-tests=abfs clean verify 
-Dtest=noneDit.test=ITestAbfsInputStreamStatistics#testWithNullStreamStatistics
   -- Fails.
   
   The reason is during parallel tests paths are created under fork directories 
but while getting the path status absolute path is used. 
   Fix is change :            
   AbfsRestOperation abfsRestOperation = fs.getAbfsClient().getPathStatus(
             "/test/" + getMethodName(), false);
   to 
   AbfsRestOperation abfsRestOperation = fs.getAbfsClient().getPathStatus(
                 nullStatFilePath.toUri().getPath(), false);
   
   Interesting debugging indeed. 
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to