This commit is contained in:
softworkz 2022-07-19 00:45:51 +02:00 коммит произвёл GitHub
Родитель 810624d5b3
Коммит 1c991af5b1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -225,7 +225,11 @@ export class QualityPreChecker {
fixUpObjectsWithoutType() {
for (const { name, schema } of this.listSchemas()) {
if (<any>schema.type === "file" || <any>schema.format === "file" || <any>schema.format === "binary") {
if (
<any>schema.type === "file" ||
<any>schema.format === "file" ||
(<any>schema.format === "binary" && <any>schema.type !== "string")
) {
// handle inconsistency in file format handling.
this.session.warning(
`'The schema ${schema?.["x-ms-metadata"]?.name || name} with 'type: ${schema.type}', format: ${