Skip to content

Commit

Permalink
MOSIP-32454: Changed ballerina version
Browse files Browse the repository at this point in the history
Signed-off-by: HimajaDhanyamraju2 <dhanyamraju.himaja2@mindtree.com>
  • Loading branch information
HimajaDhanyamraju2 committed May 13, 2024
1 parent 56f3696 commit 78ee428
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
echo "GPG_TTY=$(tty)" >> $GITHUB_ENV
- name: Install ballerina
run: |
wget -q --show-progress https://dist.ballerina.io/downloads/2201.8.6/ballerina-2201.8.6-swan-lake-linux-x64.deb -O ballerina-linux-installer-x64.deb
wget -q --show-progress https://dist.ballerina.io/downloads/2201.9.0/ballerina-2201.9.0-swan-lake-linux-x64.deb -O ballerina-linux-installer-x64.deb
sudo dpkg -i ballerina-linux-installer-x64.deb
- name: Hub-service build
run: |
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
echo "GPG_TTY=$(tty)" >> $GITHUB_ENV
- name: Install ballerina
run: |
wget -q --show-progress https://dist.ballerina.io/downloads/2201.8.6/ballerina-2201.8.6-swan-lake-linux-x64.deb -O ballerina-linux-installer-x64.deb
wget -q --show-progress https://dist.ballerina.io/downloads/2201.9.0/ballerina-2201.9.0-swan-lake-linux-x64.deb -O ballerina-linux-installer-x64.deb
sudo dpkg -i ballerina-linux-installer-x64.deb
- name: Hub-service build
run: |
Expand Down
2 changes: 1 addition & 1 deletion consolidator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LABEL build_time=${BUILD_TIME}

ARG consolidator_config_url
ARG max_heap_size=2048m
ARG ballerina_download_url=https://dist.ballerina.io/downloads/2201.8.6/ballerina-2201.8.6-swan-lake-linux-x64.deb
ARG ballerina_download_url=https://dist.ballerina.io/downloads/2201.9.0/ballerina-2201.9.0-swan-lake-linux-x64.deb
ENV consolidator_config_file_url_env=${consolidator_config_url}
COPY ./target/bin/*.jar consolidator.jar
EXPOSE 9192
Expand Down
2 changes: 1 addition & 1 deletion hub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LABEL build_time=${BUILD_TIME}

ARG hub_config_url
ARG max_heap_size=2048m
ARG ballerina_download_url=https://dist.ballerina.io/downloads/2201.8.6/ballerina-2201.8.6-swan-lake-linux-x64.deb
ARG ballerina_download_url=https://dist.ballerina.io/downloads/2201.9.0/ballerina-2201.9.0-swan-lake-linux-x64.deb
ENV hub_config_file_url_env=${hub_config_url}
COPY ./target/bin/*.jar hub.jar
EXPOSE 9191
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public function isTopicsPresentKafka() returns boolean|error? {
handle newMosipKafkaAdminClientResult = newMosipKafkaAdminClient(bootStrapServer);
log:printInfo("Checking if metadata Topics are present");
boolean|error? result = trap isTopicsPresent(newMosipKafkaAdminClientResult, java:fromString(config:META_TOPICS));
log:printInfo("Metadata Topics are present", present = result);
return result;
}

Expand Down

0 comments on commit 78ee428

Please sign in to comment.