Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/configs/app_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ class Connections:
url_upload_greenroom = ConfigClass.url_upload_greenroom
url_upload_core = ConfigClass.url_upload_core
url_status = ConfigClass.url_status
url_lineage = ConfigClass.url_lineage
url_download_greenroom = ConfigClass.url_download_greenroom
url_download_core = ConfigClass.url_download_core
url_v2_download_pre = ConfigClass.url_v2_download_pre
Expand Down
3 changes: 1 addition & 2 deletions app/resources/custom_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class Error:
'INVALID_ATTRIBUTE': "Invalid attribute '%s'. Please verify and try again.",
'INVALID_UPLOAD_REQUEST': 'Invalid upload request: %s',
'INVALID_SOURCE_FILE': 'File does not exist or source file provided is invalid: %s',
'INVALID_LINEAGE': 'Create lineage failed: %s',
'INVALID_PIPELINENAME': (
'Invalid pipeline name. Pipeline names must be between 1 and 20 characters long and '
'may only contain lowercase letters, numbers, and/or special characters of -_, .'
Expand Down Expand Up @@ -66,7 +65,7 @@ class Error:
'It means the resumable file is not the same with previous one.\n'
'Please to double check the file content.'
),
'UNSUPPORT_TAG_MANIFEST': 'Tagging, lineage and manifest attaching are not supported for folder type.',
'UNSUPPORT_TAG_MANIFEST': 'Tagging and manifest attaching are not supported for folder type.',
'INVALID_INPUT': 'Invalid input. Please try again.',
'UNSUPPORTED_PROJECT': 'This function is not supported in the given Project %s',
'CREATE_FOLDER_IF_NOT_EXIST': 'Target folder does not exist. Would you like to create a new folder?',
Expand Down
1 change: 0 additions & 1 deletion app/services/output_manager/error_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class ECustomizedError(enum.Enum):
MISSING_REQUIRED_ATTRIBUTE = 'MISSING_REQUIRED_ATTRIBUTE'
INVALID_UPLOAD_REQUEST = 'INVALID_UPLOAD_REQUEST'
INVALID_SOURCE_FILE = 'INVALID_SOURCE_FILE'
INVALID_LINEAGE = 'INVALID_LINEAGE'
INVALID_PIPELINENAME = 'INVALID_PIPELINENAME'
INVALID_PATHS = 'INVALID_PATHS'
INVALID_RESUMABLE = 'INVALID_RESUMABLE'
Expand Down
1 change: 0 additions & 1 deletion env.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def modify_values(self, settings):
settings.url_dataset_v2download = settings.base_url + 'portal/download/core/v2/dataset'
settings.url_dataset = settings.base_url + 'portal/v1/dataset'
settings.url_validation = settings.base_url + 'v1/files/validation'
settings.url_lineage = settings.url_bff + '/v1/lineage'

return settings

Expand Down