Skip to content

Commit

Permalink
Merge branch 'master' into mvp_demo
Browse files Browse the repository at this point in the history
  • Loading branch information
dinogun committed Nov 2, 2023
2 parents 703ee00 + bd203f3 commit 6da70a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
# runAsUser: 1000
containers:
- name: postgres
image: postgres:15.2
image: quay.io/enterprisedb/postgresql:16-postgis-multilang
imagePullPolicy: IfNotPresent
env:
- name: POSTGRES_PASSWORD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ spec:
serviceAccountName: kruize-sa
containers:
- name: postgres
image: postgres:15.2
image: quay.io/enterprisedb/postgresql:16-postgis-multilang
imagePullPolicy: IfNotPresent
env:
- name: POSTGRES_PASSWORD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public List<KruizeResultsEntry> addToDBAndFetchFailedResults(List<KruizeResultsE
failedResultsEntries.add(entry);
} else if (message.contains(DBConstants.DB_MESSAGES.NO_PARTITION_RELATION)) {
try {
LOGGER.info(DBConstants.DB_MESSAGES.CREATE_PARTITION_RETRY);
LOGGER.debug(DBConstants.DB_MESSAGES.CREATE_PARTITION_RETRY);
tx.commit();
tx = session.beginTransaction();
// create partitions based on entry object
Expand Down

0 comments on commit 6da70a5

Please sign in to comment.