lakewik/EasyStorj

Unable to register new account

Opened this issue · 3 comments

New install, attempt to register a user.

ERROR Error in Account Manager login
2018-03-08 14:44:48,061 ERROR Function: if_logged_in
ERROR Function: if_logged_in
2018-03-08 14:44:48,061 ERROR Credentials file not existing
ERROR Credentials file not existing
2018-03-08 14:44:48,147 ERROR Error in Account Manager login
ERROR Error in Account Manager login
2018-03-08 14:44:48,147 ERROR Function: if_logged_in
ERROR Function: if_logged_in
2018-03-08 14:44:48,147 ERROR Credentials file not existing
ERROR Credentials file not existing
testlogin, StorjEngine
2018-03-08 14:44:48,147 DEBUG testlogin, StorjEngine
DEBUG testlogin, StorjEngine
Traceback (most recent call last):
  File "/mnt/extradrive1/projects/storj-gui-client/UI/registration.py", line 43, in register
    self.storj_client = storj.Client(None, "", api_url=self.bridge_api_url).user_create(str(self.email).strip(), str(self.password).strip())
TypeError: __init__() got an unexpected keyword argument 'api_url'
Traceback (most recent call last):
  File "/mnt/extradrive1/projects/storj-gui-client/UI/registration.py", line 43, in register
    self.storj_client = storj.Client(None, "", api_url=self.bridge_api_url).user_create(str(self.email).strip(), str(self.password).strip())
TypeError: __init__() got an unexpected keyword argument 'api_url'

are you building from source or are you using one of the releases?

yes, I pulled from source and did the setup.
Fixed it with this, the api_url field is NLA:

self.storj_client = storj.Client(None, "", storj_bridge=self.bridge_api_url).user_create(str(self.email).strip(), str(self.password).strip())

If you use source, your problem should have been addressed here
Please pull the latest version of the code and verify if the registration is still broken