Skip to content
Snippets Groups Projects
Commit 0deec4c5 authored by Mitchell Moore's avatar Mitchell Moore
Browse files

Fix variable mismatch

parent 8e0be06e
No related branches found
Tags v0.1
No related merge requests found
...@@ -34,10 +34,10 @@ def on_room(): ...@@ -34,10 +34,10 @@ def on_room():
@socketio.on('request account') @socketio.on('request account')
def request_account(json, methods=['GET', 'POST']): def request_account(json, methods=['GET', 'POST']):
print (time.strftime("%m-%d-%Y_%H:%M:%S") + '\tQueue request received: ' + str(json)) print (time.strftime("%m-%d-%Y_%H:%M:%S") + '\tQueue request received: ' + str(json))
sid = str(session['uid']) room = str(session['uid'])
print("Room: {}".format(sid)) print("Room: {}".format(room))
try: try:
tasks.celery_create_account.delay(json['username'], json['fullname'], json['reason'], session=sid) tasks.celery_create_account.delay(json['username'], json['fullname'], json['reason'], session=room)
except Exception as e: except Exception as e:
print(time.strftime("%m-%d-%Y_%H:%M:%S") + "\tError in account creation: ", e) print(time.strftime("%m-%d-%Y_%H:%M:%S") + "\tError in account creation: ", e)
socketio.emit("Account creation failed", room) socketio.emit("Account creation failed", room)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment