Skip to content

Commit

Permalink
update hserver command args (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
4eUeP authored Nov 21, 2022
1 parent b4f98f3 commit b2aaa59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_repo_dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
curl \
-X POST \
-H 'Content-Type: application/json' \
${{ secrets.SLACK_WEB_HOOK_URL }} \
${{ secrets.SLACK_TEST_RESULTS_HOOK_URL }} \
--data "{\"data\": \"GitHub Action build result: ${{ job.status }} "$JOB_STATUS_EMOJI"\n\
Commit info: https://github.com/hstreamdb/hstream/commit/${{ github.event.client_payload.commit_sha }}\n\
Action summary: https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\"}"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ bin/

.logs
/local/

MyLocalTest.java
4 changes: 2 additions & 2 deletions app/src/test/java/io/hstream/testing/TestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,13 @@ static class HServerCliOpts {
public SecurityOptions securityOptions;

public String toString() {
return " --host "
return " --bind-address "
+ "127.0.0.1 "
+ " --port "
+ port
+ " --internal-port "
+ internalPort
+ " --address "
+ " --advertised-address "
+ address
+ " --server-id "
+ serverId
Expand Down

0 comments on commit b2aaa59

Please sign in to comment.