-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into kl/data-processing
- Loading branch information
Showing
27 changed files
with
1,315 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
changelog.d/20240508_144202_mzhiltso_fix_dataset_downloading.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Fixed | ||
|
||
- The 500 / "The result file does not exist in export cache" error | ||
on dataset export request | ||
(<https://github.com/cvat-ai/cvat/pull/7864>) |
4 changes: 4 additions & 0 deletions
4
changelog.d/20240521_151421_nlerche_fix_missing_serviceName.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Fix missing serviceName field in kvrocks (issue #7741) | ||
(<https://github.com/cvat-ai/cvat/pull/7924>) |
4 changes: 4 additions & 0 deletions
4
...130047_maria_fix_issue_with_login_when_email_domain_contains_capital_symbols.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### Fixed | ||
|
||
- Login when the domain of a user email contains capital symbols and a user was created after being invited to an org | ||
(<https://github.com/cvat-ai/cvat/pull/7906>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -522,4 +522,8 @@ | |
span.anticon { | ||
margin-left: $grid-unit-size * 2; | ||
} | ||
|
||
.ant-modal-footer { | ||
margin: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (C) 2024 CVAT.ai Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
from django.apps import AppConfig | ||
|
||
|
||
class DatasetManagerConfig(AppConfig): | ||
name = "cvat.apps.dataset_manager" | ||
|
||
def ready(self) -> None: | ||
from django.conf import settings | ||
|
||
from . import default_settings | ||
|
||
for key in dir(default_settings): | ||
if key.isupper() and not hasattr(settings, key): | ||
setattr(settings, key, getattr(default_settings, key)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (C) 2024 CVAT.ai Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
import os | ||
|
||
DATASET_CACHE_TTL = int(os.getenv("CVAT_DATASET_CACHE_TTL", 60 * 60 * 10)) | ||
"Base lifetime for cached exported datasets, in seconds" | ||
|
||
DATASET_CACHE_LOCK_TIMEOUT = int(os.getenv("CVAT_DATASET_CACHE_LOCK_TIMEOUT", 10)) | ||
"Timeout for cache lock acquiring, in seconds" | ||
|
||
DATASET_EXPORT_LOCKED_RETRY_INTERVAL = int(os.getenv("CVAT_DATASET_EXPORT_LOCKED_RETRY_INTERVAL", 60)) | ||
"Retry interval for cases the export cache lock was unavailable, in seconds" |
Oops, something went wrong.