This is an automated email from the ASF dual-hosted git repository.

clintropolis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new f0d06c45ada ci: fix unit tests, bump actions-timeline (#19509)
f0d06c45ada is described below

commit f0d06c45ada0ce6177e0e0663e27a79a45b917db
Author: Clint Wylie <[email protected]>
AuthorDate: Fri May 22 23:34:14 2026 -0700

    ci: fix unit tests, bump actions-timeline (#19509)
    
    * fix unit tests, bump actions-timeline
    
    CI is failing to startup to run unit tests, complaining about 
actions-timeline version not being allowed, switched to latest per 
https://github.com/apache/infrastructure-actions/blob/main/actions.yml
    
    * fix S3InputSourceTest
---
 .github/workflows/unit-and-integration-tests-unified.yml            | 2 +-
 .../test/java/org/apache/druid/data/input/s3/S3InputSourceTest.java | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/unit-and-integration-tests-unified.yml 
b/.github/workflows/unit-and-integration-tests-unified.yml
index b5860b49455..e960493dba3 100644
--- a/.github/workflows/unit-and-integration-tests-unified.yml
+++ b/.github/workflows/unit-and-integration-tests-unified.yml
@@ -64,4 +64,4 @@ jobs:
     runs-on: ubuntu-latest
     if: ${{ !cancelled() }}
     steps:
-      - uses: Kesin11/actions-timeline@54d513e0b5ff1158f1cf8321108d666a5a6c1fca
+      - uses: Kesin11/actions-timeline@44c9c178ffb2fb1d9859614a3ffa79ccfb77565e
diff --git 
a/extensions-core/s3-extensions/src/test/java/org/apache/druid/data/input/s3/S3InputSourceTest.java
 
b/extensions-core/s3-extensions/src/test/java/org/apache/druid/data/input/s3/S3InputSourceTest.java
index 96db444aa08..e9291c73924 100644
--- 
a/extensions-core/s3-extensions/src/test/java/org/apache/druid/data/input/s3/S3InputSourceTest.java
+++ 
b/extensions-core/s3-extensions/src/test/java/org/apache/druid/data/input/s3/S3InputSourceTest.java
@@ -408,10 +408,8 @@ public class S3InputSourceTest extends 
InitializedNullHandlingTest
   public void 
testSchemelessEndpointConfigUrlWithNullClientConfigResolvesSupplier() throws 
Exception
   {
     EasyMock.reset(SERVER_SIDE_ENCRYPTING_AMAZON_S3_BUILDER);
-    
EasyMock.expect(SERVER_SIDE_ENCRYPTING_AMAZON_S3_BUILDER.setS3ClientSupplier(EasyMock.anyObject()))
-            .andReturn(SERVER_SIDE_ENCRYPTING_AMAZON_S3_BUILDER);
-    EasyMock.expect(SERVER_SIDE_ENCRYPTING_AMAZON_S3_BUILDER.build())
-            .andReturn(SERVICE);
+    
EasyMock.expect(SERVER_SIDE_ENCRYPTING_AMAZON_S3_BUILDER.getS3StorageConfig())
+            .andStubReturn(S3_STORAGE_CONFIG);
     EasyMock.replay(SERVER_SIDE_ENCRYPTING_AMAZON_S3_BUILDER);
 
     final AWSEndpointConfig schemelessEndpoint = MAPPER.readValue(


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to