Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
RECIRCLE
/
portal
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
11
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1a9d29a0
authored
Apr 27, 2020
by
Chif Gergő
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle wrong auth token
parent
17f141d6
Pipeline
#1094
passed with stage
in 1 minute 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
recircle/status/consumers.py
+3
-3
No files found.
recircle/status/consumers.py
View file @
1a9d29a0
...
...
@@ -17,8 +17,8 @@ class StatusConsumer(WebsocketConsumer):
# If login message arrives get the auth token from it
# Then subscribe to the channels of the vm's that belongs to the user
def
login
(
self
,
auth_token
):
t
oken
=
Token
.
objects
.
get
(
key
=
auth_token
)
if
token
:
t
ry
:
token
=
Token
.
objects
.
get
(
key
=
auth_token
)
self
.
user
=
token
.
user
instances
=
Instance
.
objects
.
filter
(
created_by
=
self
.
user
)
for
inst
in
instances
:
...
...
@@ -26,7 +26,7 @@ class StatusConsumer(WebsocketConsumer):
str
(
inst
.
id
),
self
.
channel_name
)
e
lse
:
e
xcept
Token
.
DoesNotExist
:
self
.
disconnect
(
100
)
# Unsubscribe from registered groups
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment