Fixed invocation of serverless functions (#4907)

main
Andrey Zhavoronkov 3 years ago committed by GitHub
parent 3957892954
commit 65a2610636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -58,6 +58,7 @@ Skeleton (<https://github.com/cvat-ai/cvat/pull/1>), (<https://github.com/opencv
- Show empty tasks (<https://github.com/cvat-ai/cvat/pull/100>) - Show empty tasks (<https://github.com/cvat-ai/cvat/pull/100>)
- Fixed project filtration (<https://github.com/opencv/cvat/pull/4878>) - Fixed project filtration (<https://github.com/opencv/cvat/pull/4878>)
- Maximum callstack exceed when create task with 100000+ files from cloud storage (<https://github.com/opencv/cvat/pull/4836>) - Maximum callstack exceed when create task with 100000+ files from cloud storage (<https://github.com/opencv/cvat/pull/4836>)
- Fixed invocation of serverless functions (<https://github.com/opencv/cvat/pull/4907>)
### Security ### Security
- TDB - TDB

@ -21,6 +21,12 @@ services:
cvat_server: cvat_server:
environment: environment:
CVAT_SERVERLESS: 1 CVAT_SERVERLESS: 1
extra_hosts:
- "host.docker.internal:host-gateway"
cvat_worker_low:
extra_hosts:
- "host.docker.internal:host-gateway"
volumes: volumes:
cvat_events: cvat_events:

@ -54,8 +54,6 @@ services:
- cvat_logs:/home/django/logs - cvat_logs:/home/django/logs
networks: networks:
- cvat - cvat
extra_hosts:
- "host.docker.internal:host-gateway"
cvat_utils: cvat_utils:
container_name: cvat_utils container_name: cvat_utils

Loading…
Cancel
Save