Merge branch 'get-author-get-topic-fix' into dokku-main

This commit is contained in:
Igor Lobanov 2022-11-11 16:34:44 +01:00
commit 347e8ffdc3
5 changed files with 24 additions and 19 deletions

5
CHECKS Normal file
View File

@ -0,0 +1,5 @@
WAIT=30
TIMEOUT=10
ATTEMPTS=60 # 60 * 30 = 30 min
/ Playground

View File

@ -1,15 +1,13 @@
FROM python:3.8
EXPOSE 8080
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN set -ex && pip install -r requirements.txt
COPY . .
CMD ["python", "server.py"]
FROM python:3.8
EXPOSE 8080
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN set -ex && pip install -r requirements.txt
COPY . .

2
Procfile Normal file
View File

@ -0,0 +1,2 @@
web: python server.py

View File

@ -213,6 +213,6 @@ def get_top_authors(_, _info, offset, limit):
@query.field("getAuthor")
async def get_author(_, _info, slug):
a = await UserStorage.users[slug]
a.stat = get_author_stat(slug)
a = await UserStorage.get_user_by_slug(slug)
a.stat = await get_author_stat(slug)
return a

View File

@ -55,8 +55,8 @@ async def topics_by_author(_, _info, author):
@query.field("getTopic")
async def get_topic(_, _info, slug):
t = await TopicStorage.topics[slug]
t.stat = get_topic_stat(slug)
t = TopicStorage.topics[slug]
t.stat = await get_topic_stat(slug)
return t