Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Shalucik committed Jun 19, 2024
1 parent 3f7e793 commit 7d3844e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-and-publish-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
Expand Down
4 changes: 2 additions & 2 deletions geopackage_validator/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def gdal_error_handler(err_class, err_num, error):
]
output = format_result(
validation_code="UNKNOWN_WARNINGS",
validation_description=f"No unexpected errors must occur for: {validator.code}: {validator.__doc__}",
validation_description=f"No unexpected errors must occur for: RQ{validator.code} - {validator.__doc__}",
level=ValidationLevel.UNKNOWN_WARNING,
trace=trace,
)
Expand All @@ -172,7 +172,7 @@ def gdal_error_handler(err_class, err_num, error):
else:
output = format_result(
validation_code="UNKNOWN_WARNINGS",
validation_description=f"No unexpected errors must occur for: {validator.code}: {validator.__doc__}",
validation_description=f"No unexpected errors must occur for: RQ{validator.code} - {validator.__doc__}",
level=ValidationLevel.UNKNOWN_WARNING,
trace=current_gdal_error_traces,
)
Expand Down

0 comments on commit 7d3844e

Please sign in to comment.