File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/test/java/com/facebook/presto/iceberg/nessie Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1414 <properties >
1515 <air .main.basedir>${project.parent.basedir} </air .main.basedir>
1616 <dep .iceberg.version>1.5.0</dep .iceberg.version>
17- <dep .nessie.version>0.77.1 </dep .nessie.version>
17+ <dep .nessie.version>0.95.0 </dep .nessie.version>
1818 </properties >
1919
2020 <dependencies >
Original file line number Diff line number Diff line change 1919import com .facebook .presto .testing .QueryRunner ;
2020import com .facebook .presto .testing .containers .NessieContainer ;
2121import com .facebook .presto .tests .AbstractTestQueryFramework ;
22+ import org .projectnessie .client .NessieClientBuilder ;
2223import org .projectnessie .client .api .NessieApiV1 ;
23- import org .projectnessie .client .http .HttpClientBuilder ;
2424import org .projectnessie .error .NessieConflictException ;
2525import org .projectnessie .error .NessieNotFoundException ;
2626import org .projectnessie .model .Branch ;
@@ -53,7 +53,7 @@ public void init()
5353 {
5454 nessieContainer = NessieContainer .builder ().build ();
5555 nessieContainer .start ();
56- nessieApiV1 = HttpClientBuilder . builder ( ).withUri (nessieContainer .getRestApiUri ()).build (NessieApiV1 .class );
56+ nessieApiV1 = NessieClientBuilder . createClientBuilder ( null , null ).withUri (nessieContainer .getRestApiUri ()).build (NessieApiV1 .class );
5757 super .init ();
5858 }
5959
You can’t perform that action at this time.
0 commit comments