-
Notifications
You must be signed in to change notification settings - Fork 356
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
Fix flask api limiter issue #318
base: master
Are you sure you want to change the base?
Conversation
The test Flask versions are below:
|
It would be nice to add Line 26 in c166e64
|
alright! |
@amirouche done. |
build.sh
Outdated
@@ -30,4 +30,4 @@ check_db () { | |||
check_disk_space | |||
pip3 install -e '.[vectors]' | |||
check_db | |||
snakemake --resources 'ram=30' -j 2 $@ | |||
snakemake --resources 'ram=30' -j$(nproc) $@ |
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.
It is better to use nproc --ignore=1
so that when the build.sh
is run there is still some cpu available to do stuff.
oh sorry I was supposed to make separate PRs. Sorry for the confusion. |
190f66f
to
b9db176
Compare
Corrected! |
This fixes the issue