Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into pluggable-shards-avai…
Browse files Browse the repository at this point in the history
…lability-indicator
  • Loading branch information
dakrone committed Oct 26, 2023
2 parents aee12a1 + 328ebc4 commit 827ab5c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion distribution/docker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ void addBuildDockerImageTask(Architecture architecture, DockerBase base) {
if (base == DockerBase.IRON_BANK) {
Map<String, String> buildArgsMap = [
'BASE_REGISTRY': 'docker.elastic.co',
'BASE_IMAGE' : 'ubi8/ubi',
'BASE_IMAGE' : 'ubi9/ubi',
'BASE_TAG' : 'latest'
]

Expand Down
4 changes: 2 additions & 2 deletions distribution/docker/src/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<% if (docker_base == 'iron_bank') { %>
ARG BASE_REGISTRY=registry1.dso.mil
ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8
ARG BASE_TAG=8.6
ARG BASE_IMAGE=redhat/ubi/ubi9
ARG BASE_TAG=9.2
<% } %>
################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ tags:

# Build args passed to Dockerfile ARGs
args:
BASE_IMAGE: "redhat/ubi/ubi8"
BASE_TAG: "8.6"
BASE_IMAGE: "redhat/ubi/ubi9"
BASE_TAG: "9.2"

# Docker image labels
labels:
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog/101346.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 101346
summary: Report full stack trace for non-state file settings transforms
area: Infra/Settings
type: bug
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public void onFailure(Exception e) {
@Override
public void onFailure(Exception e) {
// If we encounter an error while runnin the non-state transforms, we avoid saving any cluster state.
errorListener.accept(checkAndReportError(namespace, List.of(e.getMessage()), reservedStateVersion));
errorListener.accept(checkAndReportError(namespace, List.of(stackTrace(e)), reservedStateVersion));
}
});
}
Expand Down

0 comments on commit 827ab5c

Please sign in to comment.