Update: Build

This commit is contained in:
dx-tan 2023-12-26 10:41:36 +07:00
parent f17485c4c6
commit da35ba418a
3 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@ -33,3 +33,5 @@ logs/
docker-compose_.yml docker-compose_.yml
cope2n-ai-fi/Dockerfile_old_work cope2n-ai-fi/Dockerfile_old_work
*.sql *.sql
*.sql
.env_prod

View File

@ -1,6 +1,7 @@
.github .github
.git .git
.vscode .vscode
packages/
__pycache__ __pycache__
DataBase/image_temp/ DataBase/image_temp/
DataBase/json_temp/ DataBase/json_temp/

View File

@ -46,7 +46,7 @@ class CeleryConnector:
def upload_obj_to_s3(self, args): def upload_obj_to_s3(self, args):
return self.send_task('upload_obj_to_s3', args) return self.send_task('upload_obj_to_s3', args)
def remove_local_file(self, args): def remove_local_file(self, args):
return self.send_task('remove_local_file', args, countdown=600) # nearest execution of this task in 10 minutes return self.send_task('remove_local_file', args, countdown=280) # nearest execution of this task in 280 seconds
def process_fi(self, args): def process_fi(self, args):
return self.send_task('process_fi_invoice', args) return self.send_task('process_fi_invoice', args)
def process_fi_result(self, args): def process_fi_result(self, args):