Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void testLdbCliForOzoneSnapshot() throws Exception {
GenericTestUtils
.waitFor(() -> new File(snapshotCurrent).exists(), 1000, 120000);
String[] args =
new String[] {"--db=" + dbPath, "scan", "--cf", "keyTable"};
new String[] {"--db=" + dbPath, "scan", "--cf", "fileTable"};
Comment thread
priyeshkaratha marked this conversation as resolved.
Outdated
int exitCode = cmd.execute(args);
assertEquals(0, exitCode);
String cmdOut = stdout.toString();
Expand All @@ -157,9 +157,8 @@ private void writeKey(String volumeName, String bucketName,
repConfig = ReplicationConfig.fromTypeAndFactor(ReplicationType.RATIS,
ReplicationFactor.THREE);
}
// see HDDS-10091 for making this work with FILE_SYSTEM_OPTIMIZED layout
TestDataUtil.createVolumeAndBucket(client, volumeName, bucketName,
BucketLayout.LEGACY);
BucketLayout.FILE_SYSTEM_OPTIMIZED);
TestDataUtil.createKey(
client.getObjectStore().getVolume(volumeName).getBucket(bucketName),
keyName, repConfig, "test".getBytes(StandardCharsets.UTF_8));
Expand Down