Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Data Flow
Data Ingestion
Ingestion Workflow
Commits
6f85c6e3
Commit
6f85c6e3
authored
Sep 24, 2021
by
Aalekh Jain
Browse files
Added comments
parent
cc30589c
Pipeline
#67772
failed with stages
in 3 minutes and 3 seconds
Changes
2
Pipelines
2
Show whitespace changes
Inline
Side-by-side
workflow-core/src/main/java/org/opengroup/osdu/workflow/service/WorkflowManagerServiceImpl.java
View file @
6f85c6e3
...
...
@@ -47,6 +47,8 @@ public class WorkflowManagerServiceImpl implements IWorkflowManagerService {
return
createWorkflowCommon
(
request
,
true
);
}
// The same logic is also used in WorkflowRunServiceImpl
// hence WorkflowRunServiceImpl needs to be changed as well in case the below logic changes
@Override
public
WorkflowMetadata
getWorkflowByName
(
final
String
workflowName
)
{
try
{
...
...
workflow-core/src/main/java/org/opengroup/osdu/workflow/service/WorkflowRunServiceImpl.java
View file @
6f85c6e3
...
...
@@ -193,6 +193,8 @@ public class WorkflowRunServiceImpl implements IWorkflowRunService {
return
false
;
}
// The below code is borrowed from WorkflowManagerServiceImpl
// Can't directly consume WorkflowManagerServiceImpl here as it will lead to cyclic dependency
private
WorkflowMetadata
getWorkflowByName
(
String
workflowName
)
{
try
{
return
workflowMetadataRepository
.
getWorkflow
(
workflowName
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment