Binary defaults for conditional metadata now used Binary Type
Before they were of String type resolves #467
This commit is contained in:
@@ -1,61 +1,61 @@
|
||||
{
|
||||
"properties": [
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.listener.enabled",
|
||||
"description": "This property is used to determine if a task will be linked to the batch jobs that are run.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "false",
|
||||
"defaultValue": false,
|
||||
"name": "spring.cloud.task.batch.fail-on-job-failure",
|
||||
"description": "This property is used to determine if a task app should return with a non zero exit code if a batch job fails.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch events.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.chunk.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch chunk events.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.item-process.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch item processed events.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.item-read.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch item read events.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.item-write.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch item write events.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.job-execution.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch job execution events.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.skip.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch skip events.",
|
||||
"type": "java.lang.Boolean"
|
||||
},
|
||||
{
|
||||
"defaultValue": "true",
|
||||
"defaultValue": true,
|
||||
"name": "spring.cloud.task.batch.events.step-execution.enabled",
|
||||
"description": "This property is used to determine if a task should listen for batch step execution events.",
|
||||
"type": "java.lang.Boolean"
|
||||
|
||||
Reference in New Issue
Block a user