[
https://issues.apache.org/jira/browse/KNOX-2700?focusedWorklogId=707598&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-707598
]
ASF GitHub Bot logged work on KNOX-2700:
----------------------------------------
Author: ASF GitHub Bot
Created on: 12/Jan/22 15:58
Start Date: 12/Jan/22 15:58
Worklog Time Spent: 10m
Work Description: risdenk commented on a change in pull request #528:
URL: https://github.com/apache/knox/pull/528#discussion_r783212715
##########
File path:
gateway-test-release/webhdfs-kerb-test/src/test/resources/org/apache/knox/gateway/SecureKnoxShellTest/SecureWebHdfsPutGet.groovy
##########
@@ -30,6 +30,7 @@ session = KnoxSession.kerberosLogin(gateway, jaasConf,
krb5conf, true)
status = Hdfs.status(session).file( "/" ).now().string
Hdfs.put( session ).file( file ).to( dataDir + "/" + dataFile ).now()
+Thread.sleep(1000)
Review comment:
I'm suggesting don't just do a `Thread.sleep` when there is some timing
issue here.
I would expect `Hdfs.put( session ).file( file ).to( dataDir + "/" +
dataFile ).now()` to return when the file is actually created. So there is some
bug there along the line that it returns without the file actually being there
somehow. (No idea if this is a bug in HDFS, WebHDFS, Knox, etc).
The fix you put in could work, but it might make sense to check if the file
is created in a loop (ie: while not created `Thread.sleep(200)` or something
like that). This would avoid an overloaded CI machine from artificially failing
due to file not being ready yet.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 707598)
Time Spent: 40m (was: 0.5h)
> Fix SecureKnoxShellTest failures
> --------------------------------
>
> Key: KNOX-2700
> URL: https://issues.apache.org/jira/browse/KNOX-2700
> Project: Apache Knox
> Issue Type: Bug
> Components: Tests
> Reporter: Sandeep More
> Assignee: Sandeep More
> Priority: Major
> Time Spent: 40m
> Remaining Estimate: 0h
>
> Currently the SecureKnoxShellTest is failing with the following error
> {code:java}
> [exec] [INFO]
> [exec] [ERROR] Errors:
> [exec] [ERROR]
> SecureKnoxShellTest.testCachedTicket:277->webhdfsPutGet:304 » FileNotFound
> Sec...
> [exec] [INFO]
> [exec] [ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 0 {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)