-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with activate-account: InternalError: UPDATE can not be performed in Read-Only-Transaction #11
Comments
mbehrle
added a commit
to mbehrle/nereid
that referenced
this issue
Mar 24, 2016
mbehrle
added a commit
to mbehrle/nereid
that referenced
this issue
Mar 24, 2016
mbehrle
added a commit
to mbehrle/nereid
that referenced
this issue
Mar 24, 2016
mbehrle
added a commit
to mbehrle/nereid
that referenced
this issue
Mar 24, 2016
mbehrle
added a commit
to mbehrle/nereid
that referenced
this issue
Mar 24, 2016
mbehrle
added a commit
to mbehrle/nereid
that referenced
this issue
Mar 24, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On a 3.4 installation with
Flask==0.10.1
Flask-Babel==0.9
Flask-Login==0.2.11
Flask-WTF==0.12
I get the following error on account activation:
The problem arises from missing kwargs in
https://github.com/fulfilio/nereid/blob/develop/nereid/routing.py#L46
while being set in
https://github.com/fulfilio/nereid/blob/3.4/nereid/helpers.py#L457
Researching the issue leads to
pallets/werkzeug#645
and
pallets/werkzeug#675
as well as
pallets/werkzeug#677
Removing def empty(self): in routing py and using
indeed propagates the setting and activation succeeds. So probably get_empty_kwargs should be used on instancianting rule.empty()
https://github.com/fulfilio/nereid/blob/3.4/trytond_nereid/website.py#L400
The text was updated successfully, but these errors were encountered: