diff options
author | 2020-09-25 20:17:05 +0530 | |
---|---|---|
committer | 2020-10-19 22:19:56 +0530 | |
commit | 5304db69771676e5b87f68ca79239daef33705d4 (patch) | |
tree | dec8527701e86facb44ae43b22bd3aa13db944b8 /opnfv_testapi/ui/auth/sign.py | |
parent | 34cadbb808dc43452c1f48cc5179c6302e1c6f2b (diff) |
Fixed login response issue
Issue-ID: DOVETAIL-801
Signed-off-by: Kanagaraj Manickam <kanagaraj.manickam@huawei.com>
Change-Id: Ic1e8bce8fc6391c1d3b6257056fe10079e31ed94
Diffstat (limited to 'opnfv_testapi/ui/auth/sign.py')
-rw-r--r-- | opnfv_testapi/ui/auth/sign.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opnfv_testapi/ui/auth/sign.py b/opnfv_testapi/ui/auth/sign.py index 1da0164..11a95c4 100644 --- a/opnfv_testapi/ui/auth/sign.py +++ b/opnfv_testapi/ui/auth/sign.py @@ -321,7 +321,7 @@ class LoginHandler(base.BaseHandler): mc = memcache.Client(['127.0.0.1:11211'], debug=0) mc.set("token", token) self.set_header("token", token) - self.finish_request(response) + self.finish_request(resp) class LogoutHandler(base.BaseHandler): def post(self): |