Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshatJawne committed Jun 26, 2024
2 parents 76814bc + 77b6c1c commit b4ede0f
Show file tree
Hide file tree
Showing 153 changed files with 3,601 additions and 1,574 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,14 @@ public OUTPUT_TYPE get() {
}
return cachedResult;
}

public OUTPUT_TYPE getIfCached() {
if (hasCachedResult) { // force a volatile read
if (errorResult != null) {
throw errorResult;
}
return cachedResult;
}
return null;
}
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/groovy/Classpaths.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ class Classpaths {
static final String HADOOP_VERSION = '3.4.0'

static final String ICEBERG_GROUP = 'org.apache.iceberg'
static final String ICEBERG_VERSION = '1.5.0'
static final String ICEBERG_VERSION = '1.5.2'

static final String AWSSDK_GROUP = 'software.amazon.awssdk'
static final String AWSSDK_VERSION = '2.23.19'
static final String AWSSDK_VERSION = '2.24.5'

static final String TESTCONTAINER_GROUP = 'org.testcontainers'
static final String TESTCONTAINER_VERSION = '1.19.4'
Expand Down
Loading

0 comments on commit b4ede0f

Please sign in to comment.