Skip to content

Commit

Permalink
fix(fleet): warn not error on invalid YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jan 19, 2023
1 parent 64c9cc7 commit 1e3b1a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/manager/fleet/extract.ts
Expand Up @@ -130,7 +130,7 @@ export function extractPackageFile(
deps.push(...gitRepoDeps);
}
} catch (err) {
logger.error({ error: err, packageFile }, 'Failed to parse fleet YAML');
logger.warn({ error: err, packageFile }, 'Failed to parse fleet YAML');
}

return deps.length ? { deps } : null;
Expand Down

0 comments on commit 1e3b1a8

Please sign in to comment.