-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from GSA/load-test-fixes-2
Removes size and status from harvest source model
- Loading branch information
Showing
6 changed files
with
38 additions
and
39 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
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
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 |
---|---|---|
|
@@ -104,11 +104,9 @@ def source_data_dcatus(organization_data: dict) -> dict: | |
"notification_emails": "[email protected]", | ||
"organization_id": organization_data["id"], | ||
"frequency": "daily", | ||
"size": "small", | ||
"url": f"{HARVEST_SOURCE_URL}/dcatus/dcatus.json", | ||
"schema_type": "type1", | ||
"source_type": "dcatus", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
@@ -120,11 +118,9 @@ def source_data_dcatus_2(organization_data: dict) -> dict: | |
"notification_emails": "[email protected]", | ||
"organization_id": organization_data["id"], | ||
"frequency": "daily", | ||
"size": "medium", | ||
"url": f"{HARVEST_SOURCE_URL}/dcatus/dcatus_2.json", | ||
"schema_type": "type1", | ||
"source_type": "dcatus", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
@@ -136,11 +132,9 @@ def source_data_dcatus_same_title(organization_data: dict) -> dict: | |
"notification_emails": "[email protected]", | ||
"organization_id": organization_data["id"], | ||
"frequency": "daily", | ||
"size": "small", | ||
"url": f"{HARVEST_SOURCE_URL}/dcatus/dcatus_same_title.json", | ||
"schema_type": "type1", | ||
"source_type": "dcatus", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
@@ -157,11 +151,9 @@ def source_data_waf(organization_data: dict) -> dict: | |
"notification_emails": "[email protected]", | ||
"organization_id": organization_data["id"], | ||
"frequency": "daily", | ||
"size": "small", | ||
"url": f"{HARVEST_SOURCE_URL}/waf/", | ||
"schema_type": "type1", | ||
"source_type": "waf", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
@@ -176,7 +168,6 @@ def source_data_dcatus_invalid(organization_data: dict) -> dict: | |
"url": f"{HARVEST_SOURCE_URL}/dcatus/missing_title.json", | ||
"schema_type": "type1", | ||
"source_type": "dcatus", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
@@ -242,7 +233,6 @@ def source_data_dcatus_single_record(organization_data: dict) -> dict: | |
"url": f"{HARVEST_SOURCE_URL}/dcatus/dcatus_single_record.json", | ||
"schema_type": "type1", | ||
"source_type": "dcatus", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
@@ -279,7 +269,6 @@ def source_data_dcatus_bad_url(organization_data: dict) -> dict: | |
"url": f"{HARVEST_SOURCE_URL}/dcatus/bad_url.json", | ||
"schema_type": "type1", | ||
"source_type": "dcatus", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
@@ -303,7 +292,6 @@ def source_data_dcatus_invalid_records(organization_data) -> dict: | |
"url": "http://localhost/dcatus/missing_title.json", | ||
"schema_type": "type1", | ||
"source_type": "dcatus", | ||
"status": "active", | ||
} | ||
|
||
|
||
|
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
574131f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.