Passing in project-id when creating s3 client (#129301)

Enables creating different s3 clients for different projects

Relates: #127631
This commit is contained in:
Yang Wang 2025-06-19 12:34:11 +10:00 committed by GitHub
parent a0b8737380
commit 92b32b535b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 24 additions and 37 deletions

View file

@ -2743,7 +2743,7 @@ public abstract class ESTestCase extends LuceneTestCase {
future.run();
} else {
threads[i] = new Thread(future);
threads[i].setName("runInParallel-T#" + i);
threads[i].setName("TEST-runInParallel-T#" + i);
threads[i].start();
}
}