Skip to content

Commit a3cec0d

Browse files
Fix Azure Plugin Compilation Issue
1 parent 2f637d4 commit a3cec0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/repository-azure/src/main/java/org/elasticsearch/repositories/azure/AzureBlobStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public Map<String, BlobMetaData> listBlobsByPrefix(String keyPath, String prefix
106106

107107
public Map<String, BlobContainer> children(BlobPath path) throws URISyntaxException, StorageException {
108108
return Collections.unmodifiableMap(service.children(clientName, container, path).stream().collect(
109-
Collectors.toMap(Function.identity(), name -> new AzureBlobContainer(path.add(name), this))));
109+
Collectors.toMap(Function.identity(), name -> new AzureBlobContainer(path.add(name), this, threadPool))));
110110
}
111111

112112
public void writeBlob(String blobName, InputStream inputStream, long blobSize, boolean failIfAlreadyExists)

0 commit comments

Comments
 (0)