We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb78bc commit eb6c6fdCopy full SHA for eb6c6fd
docs/changelog/119748.yaml
@@ -0,0 +1,6 @@
1
+pr: 119748
2
+summary: Issue S3 web identity token refresh call with sufficient permissions
3
+area: Snapshot/Restore
4
+type: bug
5
+issues:
6
+ - 119747
modules/repository-s3/src/main/java/org/elasticsearch/repositories/s3/S3Service.java
@@ -417,7 +417,7 @@ public void onFileCreated(Path file) {
417
public void onFileChanged(Path file) {
418
if (file.equals(webIdentityTokenFileSymlink)) {
419
LOGGER.debug("WS web identity token file [{}] changed, updating credentials", file);
420
- credentialsProvider.refresh();
+ SocketAccess.doPrivilegedVoid(credentialsProvider::refresh);
421
}
422
423
});
0 commit comments