Skip to content

Commit

Permalink
Fix some linter warnings, part 14 (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalfishpond authored and matrixik committed Oct 23, 2017
1 parent dce9505 commit ead40ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion monasca-log-persister/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
repository: monasca/log-persister
variants:
- tag: 0.0.1
- tag: 0.0.2
aliases:
- :latest
3 changes: 1 addition & 2 deletions monasca-log-persister/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ if [ -n "$KAFKA_WAIT_FOR_TOPICS" ]; then
success="false"

for i in $(seq "$KAFKA_WAIT_RETRIES"); do
python /kafka_wait_for_topics.py
if [ $? -eq 0 ]; then
if python /kafka_wait_for_topics.py; then
success="true"
break
else
Expand Down
2 changes: 1 addition & 1 deletion monasca-log-transformer/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
repository: monasca/log-transformer
variants:
- tag: 0.0.1
- tag: 0.0.2
aliases:
- :latest
3 changes: 1 addition & 2 deletions monasca-log-transformer/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ if [ -n "$KAFKA_WAIT_FOR_TOPICS" ]; then
success="false"

for i in $(seq "$KAFKA_WAIT_RETRIES"); do
python /kafka_wait_for_topics.py
if [ $? -eq 0 ]; then
if python /kafka_wait_for_topics.py; then
success="true"
break
else
Expand Down

0 comments on commit ead40ed

Please sign in to comment.