We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eff62f7 + 51f5d23 commit 253a6b1Copy full SHA for 253a6b1
1 file changed
kp_pre_commit_hooks/gitops-values-validation.py
@@ -172,7 +172,7 @@ def main():
172
f"\nERROR: Validation errors for {service_path} in {instance_file}, {base_file} or values.yaml:"
173
)
174
for error in errors:
175
- error_location = "/".join(find_full_error_path(error)) or "the root"
+ error_location = "/".join(str(x) for x in find_full_error_path(error)) or "the root"
176
print(f" - {error.message} at {error_location}")
177
178
output_file = service_path / f"error-merged-{instance_file}"
0 commit comments