Included sync in build process again for good behavior.
Some checks failed
dR export statistics / Compile (push) Failing after 1m8s
Some checks failed
dR export statistics / Compile (push) Failing after 1m8s
This commit is contained in:
parent
60d83b3022
commit
e76bb08dbd
2
Makefile
2
Makefile
@ -1,4 +1,4 @@
|
|||||||
all: build sync_excempt export_dataset export_stats merge_images export_statistics export_mentions
|
all: build sync export_dataset export_stats merge_images export_statistics export_mentions
|
||||||
|
|
||||||
build:
|
build:
|
||||||
pip install build
|
pip install build
|
||||||
|
BIN
drstats.db
BIN
drstats.db
Binary file not shown.
@ -32,7 +32,7 @@ async def get_recent_rants(start_from=1, page_size=10):
|
|||||||
def get_rants():
|
def get_rants():
|
||||||
return dr.get_rants("recent", page_size, start_from)["rants"]
|
return dr.get_rants("recent", page_size, start_from)["rants"]
|
||||||
|
|
||||||
rants = asyncio.wait_for(asyncio.run_in_executor(get_rants), 5)
|
rants = asyncio.wait_for(loop.run_in_executor(get_rants), 5)
|
||||||
|
|
||||||
page += 1
|
page += 1
|
||||||
for rant in rants:
|
for rant in rants:
|
||||||
|
Loading…
Reference in New Issue
Block a user