Description
In BaseTestHttpFSWith:
case DISALLOW_SNAPSHOT: testDisallowSnapshot(); break; case DISALLOW_SNAPSHOT_EXCEPTION: testDisallowSnapshotException(); // Missed a "break" here. case FILE_STATUS_ATTR: testFileStatusAttr(); break;
The missing "break" won't cause any bugs though. Just the fact that testFileStatusAttr() will be run a second time after testDisallowSnapshotException() finishes.
Attachments
Attachments
Issue Links
- is caused by
-
HDFS-13876 HttpFS: Implement ALLOWSNAPSHOT, DISALLOWSNAPSHOT
- Resolved