diff options
author | dglFromAtt <dgl@research.att.com> | 2018-09-24 16:04:21 -0400 |
---|---|---|
committer | dglFromAtt <dgl@research.att.com> | 2018-09-24 16:04:27 -0400 |
commit | a246d9509e0f68ad10d6d17387a376fbc155bb14 (patch) | |
tree | a64e797880645f7ced527146d62cb34e822deb33 /misc | |
parent | 0f62fd58cfab28353a911bd24e5df5874e3b5b58 (diff) |
Fix missing double quote
Change-Id: I5e1bd9d9fb4b09c98e9136998bbaa32afb3481db
Signed-off-by: dglFromAtt <dgl@research.att.com>
Issue-ID: DMAAP-827
Diffstat (limited to 'misc')
-rw-r--r-- | misc/dmaapbc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dmaapbc b/misc/dmaapbc index 3dcef4a..0ade56b 100644 --- a/misc/dmaapbc +++ b/misc/dmaapbc @@ -165,7 +165,7 @@ init() { #loop on get /dmaap until we get a good response to indicate other provisioning can continue rc=999 - while [ $rc != "200 ] + while [ $rc != "200" ] do sleep 10 rc=`curl -s -w "%{http_code}" -X GET -H "Content-Type: application/json" http://dmaap-bc:8080/webapi/dmaap` |