Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADLA] - [BUGFIX] - Adding an innerError field to the JobInnerError object recursively #1627

Merged
merged 14 commits into from
Sep 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,11 @@
"type": "string",
"readOnly": true,
"description": "the error message description"
},
"innerError": {
"$ref": "#/definitions/JobInnerError",
"readOnly": true,
"description": "the inner error of this specific job error message, if any."
}
},
"description": "The Data Lake Analytics job error details."
Expand Down Expand Up @@ -1171,7 +1176,7 @@
}
},
"required": [
"recurrenceId"
"recurrenceId"
],
"description": "Job relationship information properties including pipeline information, correlation information, etc."
},
Expand Down Expand Up @@ -1393,7 +1398,7 @@
"type": "array",
"items": {
"type": "string"
},
},
"description": "the list of log file name patterns to find in the logFolder. '*' is the only matching character allowed. Example format: jobExecution*.log or *mylog*.txt"
},
"related": {
Expand All @@ -1412,7 +1417,7 @@
"$ref": "#/definitions/BaseJobParameters"
}
],
"properties": {
"properties": {
"name": {
"type": "string",
"description": "the friendly name of the job to build."
Expand Down Expand Up @@ -1548,7 +1553,7 @@
"type": "array",
"items": {
"type": "string"
},
},
"description": "the list of log file name patterns to find in the logFolder. '*' is the only matching character allowed. Example format: jobExecution*.log or *mylog*.txt"
},
"related": {
Expand Down