-
Notifications
You must be signed in to change notification settings - Fork 1.7k
♻️ Remove async import #12042
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
base: dev
Are you sure you want to change the base?
♻️ Remove async import #12042
Changes from all commits
ce489cc
e29727b
a3c0126
1cc9fe6
4a6e042
8ca7f36
9b97d8b
307643a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -273,12 +273,6 @@ | |
DD_RATE_LIMITER_ACCOUNT_LOCKOUT=(bool, False), | ||
# when enabled SonarQube API parser will download the security hotspots | ||
DD_SONARQUBE_API_PARSER_HOTSPOTS=(bool, True), | ||
# when enabled, finding importing will occur asynchronously, default False | ||
# This experimental feature has been deprecated as of DefectDojo 2.44.0 (March release). Please exercise caution if using this feature with an older version of DefectDojo, as results may be inconsistent. | ||
DD_ASYNC_FINDING_IMPORT=(bool, False), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If True, would it make sense to create an announcement banner or other alert to notify the users / admins that they are using a feature that is no longer present? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't have the time right now to implement this. |
||
# The number of findings to be processed per celeryworker | ||
# This experimental feature has been deprecated as of DefectDojo 2.44.0 (March release). Please exercise caution if using this feature with an older version of DefectDojo, as results may be inconsistent. | ||
DD_ASYNC_FINDING_IMPORT_CHUNK_SIZE=(int, 100), | ||
# When enabled, deleting objects will be occur from the bottom up. In the example of deleting an engagement | ||
# The objects will be deleted as follows Endpoints -> Findings -> Tests -> Engagement | ||
DD_ASYNC_OBJECT_DELETE=(bool, False), | ||
|
@@ -1790,10 +1784,6 @@ def saml2_attrib_map_format(din): | |
# Deside if SonarQube API parser should download the security hotspots | ||
SONARQUBE_API_PARSER_HOTSPOTS = env("DD_SONARQUBE_API_PARSER_HOTSPOTS") | ||
|
||
# when enabled, finding importing will occur asynchronously, default False | ||
ASYNC_FINDING_IMPORT = env("DD_ASYNC_FINDING_IMPORT") | ||
# The number of findings to be processed per celeryworker | ||
ASYNC_FINDING_IMPORT_CHUNK_SIZE = env("DD_ASYNC_FINDING_IMPORT_CHUNK_SIZE") | ||
# When enabled, deleting objects will be occur from the bottom up. In the example of deleting an engagement | ||
# The objects will be deleted as follows Endpoints -> Findings -> Tests -> Engagement | ||
ASYNC_OBJECT_DELETE = env("DD_ASYNC_OBJECT_DELETE") | ||
|
Uh oh!
There was an error while loading. Please reload this page.