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>)
- 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>)
- Fixed invocation of serverless functions (<https://github.com/opencv/cvat/pull/4907>)
### Security
- TDB

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

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

Loading…
Cancel
Save