Skip to content

Commit 6611791

Browse files
committed
const
1 parent b8fc345 commit 6611791

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azurebfs/services/TestAbfsInputStream.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949

5050
import static org.apache.hadoop.test.LambdaTestUtils.intercept;
5151
import static org.apache.hadoop.fs.azurebfs.constants.AbfsHttpConstants.FORWARD_SLASH;
52+
import static org.apache.hadoop.fs.azurebfs.constants.ConfigurationKeys.FS_AZURE_READ_AHEAD_QUEUE_DEPTH;
5253

5354
/**
5455
* Unit test AbfsInputStream.
@@ -573,7 +574,7 @@ public void testDiffReadRequestSizeAndRAHBlockSize() throws Exception {
573574
@Test
574575
public void testDefaultReadaheadQueueDepth() throws Exception {
575576
Configuration config = getRawConfiguration();
576-
config.unset("fs.azure.readaheadqueue.depth");
577+
config.unset(FS_AZURE_READ_AHEAD_QUEUE_DEPTH);
577578
AzureBlobFileSystem fs = getFileSystem(config);
578579
Path testFile = new Path("/testFile");
579580
fs.create(testFile);

0 commit comments

Comments
 (0)