-
-
Notifications
You must be signed in to change notification settings - Fork 388
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
Image RPC #625
Image RPC #625
Conversation
pls resolve conflicts |
I have some problems with saving and loading an image from memory store: it's not decoded from base64 on the load for some reason and I haven't figured out how to fix it yet. |
Found and resolved the problem: had missing decoding of the input string on save input. |
- add proper formatting to Readme instructions - fix docker-compose yaml - add Enabled flag to admin storage, as without it I saw following error on trying to post a comment: ``` mem_store.r42 | 2020/04/03 15:53:52.433 [INFO] {logger/logger.go:120 logger.(*Middleware).Handler.func1.1} POST - /cmd - 172.20.0.3 - 200 (25) - 126.8µs - {"method":"admin.enabled","params":"remark","id":29} remark42 | 2020/04/03 15:53:52.434 [WARN] {rest/httperrors.go:85 rest.SendErrorJSON} can't save comment - failed to prepare comment: can't get secret for site remark: site remark disabled - 500 (0) - dev_user/dev_user - /api/v1/comment - [rest/api/rest_private.go:121 api.(*private).createCommentCtrl] ``` Flag was originally added 106c018
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fix #572. Relies on merging #623 and #628 first.