mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-20 23:18:01 +00:00
fix: enable additional properties for indexingError.json (#20752)
This commit is contained in:
parent
89dab09376
commit
d9eaa8450a
@ -2,7 +2,7 @@
|
|||||||
"$id": "https://open-metadata.org/schema/system/indexingError.json",
|
"$id": "https://open-metadata.org/schema/system/indexingError.json",
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"title": "IndexingAppError",
|
"title": "IndexingAppError",
|
||||||
"description": "This schema defines Event Publisher Job Error Schema.",
|
"description": "This schema defines Event Publisher Job Error Schema. Additional properties exist for backward compatibility. Don't use it.",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"javaType": "org.openmetadata.schema.system.IndexingError",
|
"javaType": "org.openmetadata.schema.system.IndexingError",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
@ -43,5 +43,5 @@
|
|||||||
"type": "integer"
|
"type": "integer"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false
|
"additionalProperties": true
|
||||||
}
|
}
|
@ -11,7 +11,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* This schema defines Event Publisher Job Error Schema.
|
* This schema defines Event Publisher Job Error Schema. Additional properties exist for
|
||||||
|
* backward compatibility. Don't use it.
|
||||||
*/
|
*/
|
||||||
export interface IndexingError {
|
export interface IndexingError {
|
||||||
errorSource?: ErrorSource;
|
errorSource?: ErrorSource;
|
||||||
@ -23,6 +24,7 @@ export interface IndexingError {
|
|||||||
stackTrace?: string;
|
stackTrace?: string;
|
||||||
submittedCount?: number;
|
submittedCount?: number;
|
||||||
successCount?: number;
|
successCount?: number;
|
||||||
|
[property: string]: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum ErrorSource {
|
export enum ErrorSource {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user