Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Indexer
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
System
Indexer
Commits
37ce4344
Commit
37ce4344
authored
2 years ago
by
Zhibin Mai
Browse files
Options
Downloads
Patches
Plain Diff
Add checking on the attributes list
parent
77480d77
No related branches found
No related tags found
4 merge requests
!545
Draft: add env variables
,
!543
Draft: az/sa-support-index-extended-properties
,
!540
Draft: support index extended properties
,
!465
Index extended properties defined in property configurations
Pipeline
#178868
failed
2 years ago
Stage: review
Stage: build
Stage: coverage
Stage: containerize
Stage: scan
Stage: deploy
Stage: integration
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/util/IndexerQueueTaskBuilderAzure.java
+1
-1
1 addition, 1 deletion
...osdu/indexer/azure/util/IndexerQueueTaskBuilderAzure.java
with
1 addition
and
1 deletion
provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/util/IndexerQueueTaskBuilderAzure.java
+
1
−
1
View file @
37ce4344
...
...
@@ -171,7 +171,7 @@ public class IndexerQueueTaskBuilderAzure extends IndexerQueueTaskBuilder {
jo
.
addProperty
(
DpsHeaders
.
DATA_PARTITION_ID
,
headers
.
getPartitionIdWithFallbackToAccountId
());
jo
.
addProperty
(
DpsHeaders
.
CORRELATION_ID
,
headers
.
getCorrelationId
());
// Append the ancestry kinds used to prevent circular chasing
if
(
attributes
.
containsKey
(
Constants
.
ANCESTRY_KINDS
))
{
if
(
attributes
!=
null
&&
attributes
.
containsKey
(
Constants
.
ANCESTRY_KINDS
))
{
jo
.
addProperty
(
Constants
.
ANCESTRY_KINDS
,
attributes
.
get
(
Constants
.
ANCESTRY_KINDS
));
}
JsonObject
jomsg
=
new
JsonObject
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment