-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: fix pulsar addon typo #1115
Conversation
(cherry picked from commit 002fd95)
quit_script | ||
} | ||
|
||
quit_script() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function still appears in the file (a few lines above).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function still appears in the file (a few lines above).
fixed done
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1115 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 34 34
Lines 4352 4349 -3
=====================================
+ Misses 4352 4349 -3 ☔ View full report in Codecov by Sentry. |
@@ -77,11 +77,11 @@ init_broker() { | |||
local idx=${POD_NAME##*-} | |||
if [ $idx -ne 0 ]; then | |||
wait_for_cluster_metadata "$zookeeperServers" "$clusterName" | |||
echo "Cluster already initialized" && quit_script |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to && exit 0
to keep the semantic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to
&& exit 0
to keep the semantic.
fixed done
(cherry picked from commit 002fd95)