Skip to content

Commit

Permalink
Fix failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mohityadav766 committed Sep 30, 2024
1 parent f8269ca commit 5caabcc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@
],
"recreateIndex": false,
"batchSize": "100",
"payLoadSize": 104857600,
"searchIndexMappingLanguage": "EN"
},
"appSchedule": {
"scheduleTimeline": "Custom",
"cronExpression": "0 0 * * *"
},
"payLoadSize": "104857600",
"supportsInterrupt": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
],
"recreateIndex": false,
"batchSize": "100",
"payLoadSize": "104857600",
"payLoadSize": 104857600,
"searchIndexMappingLanguage": "EN"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@
"type": "integer",
"default": 100
},
"payLoadSize": {
"description": "Maximum number of events sent in a batch (Default 100).",
"type": "integer",
"existingJavaType": "java.lang.Long",
"default": 104857600
},
"searchIndexMappingLanguage": {
"description": "Recreate Indexes with updated Language",
"$ref": "../../../../configuration/elasticSearchConfiguration.json#/definitions/searchIndexMappingLanguage"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
},
"payLoadSize": {
"description": "Payload size in bytes depending on config.",
"type": "object",
"type": "integer",
"existingJavaType": "java.lang.Long",
"default": 104857600
},
Expand Down

0 comments on commit 5caabcc

Please sign in to comment.