Skip to content

Commit 8f38c7d

Browse files
Merge pull request opendatahub-io#55 from kserve/main
[pull] main from kserve:main
2 parents a2f1fa0 + f8212c7 commit 8f38c7d

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,10 @@ jobs:
7777
7878
# print env vars for debugging
7979
cat "$GITHUB_ENV"
80-
8180
- name: Build and push runtime image
8281
uses: docker/build-push-action@v4
8382
with:
84-
# for linux/s390x, maven errors due to missing io.grpc:protoc-gen-grpc-java:exe:linux-s390_64:1.51.1
85-
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le
83+
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
8684
target: runtime
8785
push: ${{ github.event_name == 'push' }}
8886
tags: ${{ env.IMAGE_NAME }}:${{ env.VERSION }}

pom.xml

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,27 +57,28 @@
5757
<!--suppress UnresolvedMavenProperty -->
5858
<jenkins-build-tag>${env.BUILD_TAG}</jenkins-build-tag> <!-- set by jenkins -->
5959

60-
<grpc-version>1.59.0</grpc-version>
61-
<netty-version>4.1.100.Final</netty-version>
60+
<grpc-version>1.60.2</grpc-version>
61+
<netty-version>4.1.108.Final</netty-version>
6262
<litelinks-version>1.7.2</litelinks-version>
6363
<kv-utils-version>0.5.1</kv-utils-version>
6464
<etcd-java-version>0.0.24</etcd-java-version>
65-
<protobuf-version>3.25.0</protobuf-version>
66-
<annotation-version>9.0.82</annotation-version>
67-
<guava-version>32.1.3-jre</guava-version>
68-
<jackson-databind-version>2.16.0</jackson-databind-version>
65+
<protobuf-version>3.25.3</protobuf-version>
66+
<annotation-version>9.0.87</annotation-version>
67+
<guava-version>33.1.0-jre</guava-version>
68+
<jackson-databind-version>2.16.2</jackson-databind-version>
6969
<gson-version>2.10.1</gson-version>
70-
<thrift-version>0.19.0</thrift-version>
70+
<thrift-version>0.20.0</thrift-version>
7171
<eclipse-collections-version>11.1.0</eclipse-collections-version>
72-
<log4j2-version>2.21.1</log4j2-version>
72+
<log4j2-version>2.23.1</log4j2-version>
7373
<slf4j-version>1.7.36</slf4j-version>
7474
<!-- Care must be taken when updating the prometheus client lib version
7575
since we have some custom optimized extensions to this -->
7676
<prometheus-version>0.9.0</prometheus-version>
77-
<bouncycastle-version>1.74</bouncycastle-version>
78-
<junit-version>5.10.1</junit-version>
7977

80-
<zookeeper-version>3.7.2</zookeeper-version>
78+
<bouncycastle-version>1.78</bouncycastle-version>
79+
<junit-version>5.10.2</junit-version>
80+
81+
<zookeeper-version>3.8.4</zookeeper-version>
8182
<curator-version>5.3.0</curator-version>
8283

8384
<dockerhome>${project.build.directory}/dockerhome</dockerhome>
@@ -532,6 +533,12 @@
532533
<groupId>org.apache.zookeeper</groupId>
533534
<artifactId>zookeeper</artifactId>
534535
<version>${zookeeper-version}</version>
536+
<exclusions>
537+
<exclusion>
538+
<groupId>ch.qos.logback</groupId>
539+
<artifactId>logback-classic</artifactId>
540+
</exclusion>
541+
</exclusions>
535542
</dependency>
536543
<dependency>
537544
<groupId>org.apache.curator</groupId>

src/main/java/com/ibm/watson/modelmesh/ModelMesh.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1309,6 +1309,7 @@ boolean isLeader() {
13091309
@Override
13101310
protected boolean isReady() {
13111311
if (abortStartup) {
1312+
logger.info("Returning NOT READY to readiness probe due to unexpected model loading failures");
13121313
return false;
13131314
}
13141315
// called only post-initialization

0 commit comments

Comments
 (0)