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
a0979378
Commit
a0979378
authored
Sep 01, 2021
by
harshit aggarwal
Browse files
init
parent
2050c35e
Pipeline
#62196
failed with stages
in 71 minutes and 27 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
provider/workflow-azure/src/main/java/org/opengroup/osdu/workflow/provider/azure/config/SinglePartitionCosmosClientFactory.java
deleted
100644 → 0
View file @
2050c35e
package
org.opengroup.osdu.workflow.provider.azure.config
;
import
com.azure.cosmos.CosmosClient
;
import
org.opengroup.osdu.azure.cosmosdb.ICosmosClientFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.stereotype.Component
;
@Component
@Primary
public
class
SinglePartitionCosmosClientFactory
implements
ICosmosClientFactory
{
@Autowired
CosmosClient
cosmosClient
;
@Override
public
CosmosClient
getClient
(
final
String
s
)
{
return
cosmosClient
;
}
//Adding dummy class to implement interface.
@Override
public
CosmosClient
getSystemClient
()
{
return
cosmosClient
;
}
}
\ No newline at end of file
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