diff options
author | blsaws <bryan.sullivan@att.com> | 2016-06-14 14:58:29 -0700 |
---|---|---|
committer | blsaws <bryan.sullivan@att.com> | 2016-06-14 14:58:29 -0700 |
commit | b45df4a6813026511c05491904f18908d1e4490a (patch) | |
tree | 97c722c1fa1f5b533145a907525dd351a875ddab | |
parent | b7b1bd47abaca60c3ea14016c5d333d5acd7d78f (diff) |
Correct token reference
JIRA: COPPER-4
Change-Id: I9edf0ca98c85bd730fd54a86f8bee49fbd5015de
Signed-off-by: blsaws <bryan.sullivan@att.com>
-rw-r--r-- | components/congress/test-webapp/www/proxy/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/congress/test-webapp/www/proxy/index.php b/components/congress/test-webapp/www/proxy/index.php index 6374275..81234ba 100644 --- a/components/congress/test-webapp/www/proxy/index.php +++ b/components/congress/test-webapp/www/proxy/index.php @@ -24,7 +24,7 @@ if ($method == 'OPTIONS') { } $token = file_get_contents("/tmp/os_token"); -if ($result === false) { +if ($token === false) { $url = "http://KEYSTONE_HOST:5000/v2.0/tokens"; $curlop = curl_init(); curl_setopt($curlop, CURLOPT_URL, $url); |