I tried using S3 as deep storage, there seems to b...
# troubleshooting
p
I tried using S3 as deep storage, there seems to be some issue with older clients of httpclient and httpcore See: https://github.com/aws/aws-sdk-java/issues/1919 With the below changes, i see segments getting uploaded to S3
Copy code
<dependency>
         <groupId>org.apache.httpcomponents</groupId>
         <artifactId>httpclient</artifactId>
-        <version>4.5.3</version>
+        <version>4.5.9</version>
       </dependency>
       <dependency>
         <groupId>org.apache.httpcomponents</groupId>
         <artifactId>httpcore</artifactId>
-        <version>4.4.6</version>
+        <version>4.4.9</version>
       </dependency>
k
Hi, actually I had to add these specifc version because the tests were failing o. w.
Will take a look
p
Oh okay