Commit 134682a7 authored by Stephane Nicoll's avatar Stephane Nicoll

Add error metadata for properties removed recently

parent bd0a41d8
...@@ -1269,6 +1269,15 @@ ...@@ -1269,6 +1269,15 @@
"level": "error" "level": "error"
} }
}, },
{
"name": "management.health.couchbase.timeout",
"type": "java.time.Duration",
"description": "Timeout for getting the Bucket information from the server.",
"defaultValue": "1000ms",
"deprecation": {
"level": "error"
}
},
{ {
"name": "management.port", "name": "management.port",
"type": "java.lang.Integer", "type": "java.lang.Integer",
......
...@@ -775,6 +775,15 @@ ...@@ -775,6 +775,15 @@
"level": "error" "level": "error"
} }
}, },
{
"name": "flyway.encoding",
"type": "java.nio.charset.Charset",
"description": "Encoding of SQL migrations.",
"deprecation": {
"replacement": "spring.flyway.encoding",
"level": "error"
}
},
{ {
"name": "flyway.init-description", "name": "flyway.init-description",
"type": "java.lang.String", "type": "java.lang.String",
...@@ -1394,6 +1403,33 @@ ...@@ -1394,6 +1403,33 @@
"level": "error" "level": "error"
} }
}, },
{
"name": "spring.activemq.pool.create-connection-on-startup",
"type": "java.lang.Boolean",
"description": "Whether to create a connection on startup. Can be used to warm up the pool on startup.",
"defaultValue": true,
"deprecation": {
"level": "error"
}
},
{
"name": "spring.activemq.pool.expiry-timeout",
"type": "java.time.Duration",
"description": "Connection expiration timeout.",
"defaultValue": "0ms",
"deprecation": {
"level": "error"
}
},
{
"name": "spring.activemq.pool.reconnect-on-exception",
"type": "java.lang.Boolean",
"description": "Reset the connection when a \"JMSException\" occurs.",
"defaultValue": true,
"deprecation": {
"level": "error"
}
},
{ {
"name": "spring.batch.initializer.enabled", "name": "spring.batch.initializer.enabled",
"type": "java.lang.Boolean", "type": "java.lang.Boolean",
...@@ -1403,6 +1439,22 @@ ...@@ -1403,6 +1439,22 @@
"level": "error" "level": "error"
} }
}, },
{
"name": "spring.couchbase.env.endpoints.query",
"type": "java.lang.Integer",
"description": "Number of sockets per node against the query (N1QL) service.",
"deprecation": {
"level": "error"
}
},
{
"name": "spring.couchbase.env.endpoints.view",
"type": "java.lang.Integer",
"description": "Number of sockets per node against the view service.",
"deprecation": {
"level": "error"
}
},
{ {
"name": "spring.data.cassandra.connect-timeout-millis", "name": "spring.data.cassandra.connect-timeout-millis",
"type": "java.lang.Integer", "type": "java.lang.Integer",
...@@ -1452,6 +1504,38 @@ ...@@ -1452,6 +1504,38 @@
".sql" ".sql"
] ]
}, },
{
"name": "spring.flyway.dry-run-output",
"type": "java.io.OutputStream",
"deprecation": {
"level": "error",
"reason": "Flyway pro edition only."
}
},
{
"name": "spring.flyway.error-handlers",
"type": "org.flywaydb.core.api.errorhandler.ErrorHandler[]",
"deprecation": {
"level": "error",
"reason": "Flyway pro edition only."
}
},
{
"name": "spring.flyway.sql-migration-suffix",
"type": "java.lang.String",
"deprecation": {
"replacement": "spring.flyway.sql-migration-suffixes",
"level": "error"
}
},
{
"name": "spring.flyway.undo-sql-migration-prefix",
"type": "java.lang.String",
"deprecation": {
"level": "error",
"reason": "Flyway pro edition only."
}
},
{ {
"name": "spring.git.properties", "name": "spring.git.properties",
"type": "java.lang.String", "type": "java.lang.String",
...@@ -1529,6 +1613,124 @@ ...@@ -1529,6 +1613,124 @@
"level": "error" "level": "error"
} }
}, },
{
"name" : "spring.jta.narayana.default-timeout",
"type" : "java.time.Duration",
"description" : "Transaction timeout. If a duration suffix is not specified, seconds will be used.",
"defaultValue" : "60s",
"deprecation" : {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
}, {
"name" : "spring.jta.narayana.expiry-scanners",
"type" : "java.util.List<java.lang.String>",
"description" : "Comma-separated list of expiry scanners.",
"defaultValue" : [ "com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner" ],
"deprecation" : {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
}, {
"name" : "spring.jta.narayana.log-dir",
"type" : "java.lang.String",
"description" : "Transaction object store directory.",
"deprecation" : {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
}, {
"name" : "spring.jta.narayana.one-phase-commit",
"type" : "java.lang.Boolean",
"description" : "Whether to enable one phase commit optimization.",
"defaultValue" : true,
"deprecation" : {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
}, {
"name" : "spring.jta.narayana.periodic-recovery-period",
"type" : "java.time.Duration",
"description" : "Interval in which periodic recovery scans are performed. If a duration suffix is not specified, seconds will be used.",
"defaultValue" : "120s",
"deprecation" : {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
}, {
"name" : "spring.jta.narayana.recovery-backoff-period",
"type" : "java.time.Duration",
"description" : "Back off period between first and second phases of the recovery scan. If a duration suffix is not specified, seconds will be used.",
"defaultValue" : "10s",
"deprecation" : {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{
"name": "spring.jta.narayana.recovery-db-pass",
"type": "java.lang.String",
"description": "Database password to be used by the recovery manager.",
"deprecation": {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{
"name": "spring.jta.narayana.recovery-db-user",
"type": "java.lang.String",
"description": "Database username to be used by the recovery manager.",
"deprecation": {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{
"name": "spring.jta.narayana.recovery-jms-pass",
"type": "java.lang.String",
"description": "JMS password to be used by the recovery manager.",
"deprecation": {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{
"name": "spring.jta.narayana.recovery-jms-user",
"type": "java.lang.String",
"description": "JMS username to be used by the recovery manager.",
"deprecation": {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{
"name": "spring.jta.narayana.recovery-modules",
"type": "java.util.List<java.lang.String>",
"description": "Comma-separated list of recovery modules.",
"deprecation": {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{
"name": "spring.jta.narayana.transaction-manager-id",
"type": "java.lang.String",
"description": "Unique transaction manager id.",
"defaultValue": "1",
"deprecation": {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{
"name": "spring.jta.narayana.xa-resource-orphan-filters",
"type": "java.util.List<java.lang.String>",
"description": "Comma-separated list of orphan filters.",
"deprecation": {
"level": "error",
"reason": "Narayana support has moved to third party starter."
}
},
{ {
"name": "spring.kafka.admin.ssl.keystore-location", "name": "spring.kafka.admin.ssl.keystore-location",
"type": "org.springframework.core.io.Resource", "type": "org.springframework.core.io.Resource",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment