Suren Khorenyan
Suren Khorenyan
Trying to deploy this on AWS EBS Following this guide https://docs.mattermost.com/install/docker-ebs.html (btw it's a bit outdated, AWS interface has changed) App cannot start due to `cp: can't create '/mattermost/config/config.json': Permission...
I patched app's `Dockerfile` and `entrypoint.sh`, so it grants privileges on start https://github.com/mahenzon/mattermost-docker/blob/master/app/ (build is available at https://hub.docker.com/r/mahenzon/mattermost-enterprise now) But now I face another issue (#399): https://github.com/mattermost/mattermost-docker/issues/399#issuecomment-767988551
tests are fixed in #126
Getting an error with 0.3.8 too (another one): ``` java.lang.Throwable: Non-idempotent computation: it returns different results when invoked multiple times or on different threads: MyInstanceElement{myClass=PyClass: Usermember={resolve=PsiParameterizedCachedValue{com.jetbrains.python.codeInsight.PyCustomMember$$Lambda$7328/0x000000080314a840@6d1d13d}}node=Element(Py:CLASS_DECLARATION), myContext=PyClass: HttpRequest} != MyInstanceElement{myClass=PyClass:...
Anyway there has to be the way to select related items in one query. It's strange that there's no option to do this join yet
@DrJackilD I'm sorry, I don't understand your point. What's wrong with one-to-many relationship? There're two ways to do it: 1 - in two queries. at first query main objects, then...
Cool, thank you!
macOS Monterey 12.3.1 (21E258) Checked in Chrome versions: Version 104.0.5112.101 (Official Build) (arm64) Version 105.0.5195.125 (Official Build) (arm64)
Hello there @addisonschultz! I'm glad to hear from you! Sure, I'll be very interested in exploring this with you. I have to note that these lessons are a bit outdated,...
Вариант решения: передать текущий `event loop` в `web.run_app`: ```python if __name__ == '__main__': app = get_new_configured_app(dispatcher=dp, path=WEBHOOK_URL_PATH) web.run_app(app, host=WEBAPP_HOST, port=WEBAPP_PORT, loop=dp.loop) ```