Skip to content

Commit

Permalink
Merge pull request #32 from carroarmato0/master
Browse files Browse the repository at this point in the history
Allow passing alternative url for check_topology
  • Loading branch information
carroarmato0 authored Dec 6, 2016
2 parents b5b2098 + b691025 commit 83c66c7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions check_topology
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ cat <<eof
--help|-h : Shows help
--debug|-d : Enable debug, aka echo some params
--state|-s : Expected state, defaults to running
--url|-u : Pass alternative API url
Example usage:
./check_storm_topology -n nameofthetopology
Expand Down Expand Up @@ -80,6 +81,11 @@ do
expected_status=$1
shift
;;
--url|-u)
shift
url=$1
shift
;;
--debug|-d)
shift
debug=true
Expand Down

0 comments on commit 83c66c7

Please sign in to comment.