Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Ingestion Workflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
Data Flow
Data Ingestion
Ingestion Workflow
Merge requests
!131
[Core] Adding integration tests to core
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[Core] Adding integration tests to core
ITs-2
into
master
Overview
27
Commits
24
Pipelines
75
Changes
35
Merged
Aalekh Jain
requested to merge
ITs-2
into
master
3 years ago
Overview
27
Commits
24
Pipelines
75
Changes
35
Expand
0
0
Merge request reports
Compare
master
version 26
f8bb9876
3 years ago
version 25
73c5c33b
3 years ago
version 24
38a809d4
3 years ago
version 23
6c0dc66a
3 years ago
version 22
f20f8e10
3 years ago
version 21
30353b27
3 years ago
version 20
687e0c31
3 years ago
version 19
c793a0ea
3 years ago
version 18
2462971a
3 years ago
version 17
e7dcf56b
3 years ago
version 16
f2c48bf9
3 years ago
version 15
43ce51ff
3 years ago
version 14
26618320
3 years ago
version 13
f9ac0c1c
3 years ago
version 12
7deb9336
3 years ago
version 11
7d0b1ba7
3 years ago
version 10
ef720377
3 years ago
version 9
7cf15e0c
3 years ago
version 8
8ab8ef2a
3 years ago
version 7
9242840f
3 years ago
version 6
beeacc13
3 years ago
version 5
a9965af6
3 years ago
version 4
274bcffe
3 years ago
version 3
90d2172f
3 years ago
version 2
ba8609c5
3 years ago
version 1
407fee1b
3 years ago
master (base)
and
latest version
latest version
15cdd30d
24 commits,
3 years ago
version 26
f8bb9876
23 commits,
3 years ago
version 25
73c5c33b
22 commits,
3 years ago
version 24
38a809d4
20 commits,
3 years ago
version 23
6c0dc66a
19 commits,
3 years ago
version 22
f20f8e10
18 commits,
3 years ago
version 21
30353b27
17 commits,
3 years ago
version 20
687e0c31
18 commits,
3 years ago
version 19
c793a0ea
17 commits,
3 years ago
version 18
2462971a
15 commits,
3 years ago
version 17
e7dcf56b
14 commits,
3 years ago
version 16
f2c48bf9
13 commits,
3 years ago
version 15
43ce51ff
12 commits,
3 years ago
version 14
26618320
11 commits,
3 years ago
version 13
f9ac0c1c
10 commits,
3 years ago
version 12
7deb9336
8 commits,
3 years ago
version 11
7d0b1ba7
6 commits,
3 years ago
version 10
ef720377
5 commits,
3 years ago
version 9
7cf15e0c
4 commits,
3 years ago
version 8
8ab8ef2a
3 commits,
3 years ago
version 7
9242840f
17 commits,
3 years ago
version 6
beeacc13
16 commits,
3 years ago
version 5
a9965af6
15 commits,
3 years ago
version 4
274bcffe
15 commits,
3 years ago
version 3
90d2172f
14 commits,
3 years ago
version 2
ba8609c5
12 commits,
3 years ago
version 1
407fee1b
11 commits,
3 years ago
35 files
+
1503
−
1855
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
35
Search (e.g. *.vue) (Ctrl+P)
provider/workflow-aws/src/main/java/org/opengroup/osdu/workflow/aws/repository/AwsWorkflowRunRepository.java
+
2
−
2
Options
@@ -168,8 +168,8 @@ public class AwsWorkflowRunRepository implements IWorkflowRunRepository {
String
dataPartitionId
=
headers
.
getPartitionIdWithFallbackToAccountId
();
if
(!
workflowRunExists
(
workflowRun
.
getRunId
(),
dataPartitionId
))
{
throw
new
AppException
(
HttpStatus
.
BAD_REQUEST
.
value
(),
HttpStatus
.
BAD_REQUEST
.
getReasonPhrase
(),
throw
new
AppException
(
HttpStatus
.
NOT_FOUND
.
value
(),
HttpStatus
.
NOT_FOUND
.
getReasonPhrase
(),
"WorkflowRun not found, cannot update"
);
}
Loading