Skip to content

Commit

Permalink
Debugging SPARQL push errors
Browse files Browse the repository at this point in the history
  • Loading branch information
avillar committed Apr 17, 2024
1 parent 05aff0e commit 1af58a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/download_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
needs: update-files
if: needs.update-files.outputs.has-changes == 'true'
uses: ./.github/workflows/entail_and_validate_changes.yml
secrets: inherit
with:
files-added: ${{ needs.update-files.outputs.files-added }}
files-modified: ${{ needs.update-files.outputs.files-modified }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/entail_validate_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
needs: changes
if: needs.changes.outputs.has-changes == 'true'
uses: ./.github/workflows/entail_and_validate_changes.yml
secrets: inherit
with:
files-added: ${{ needs.changes.outputs.files-added }}
files-modified: ${{ needs.changes.outputs.files-modified }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/swg_doc_match.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
needs: download-and-match
if: needs.download-and-match.outputs.has-changes == 'true'
uses: ./.github/workflows/entail_and_validate_changes.yml
secrets: inherit
with:
files-modified: incubation/working-groups/docs.ttl
repo-ref: ${{ github.ref_name }}
2 changes: 2 additions & 0 deletions scripts/update_vocabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ def load_vocab(vocab: Path, guri):
authdetails = None
try:
authdetails = (os.environ["DB_USERNAME"], os.environ["DB_PASSWORD"])
print('Using authentication with user', authdetails[0])
except:
print('Not using authentication')
pass

r = httpx.delete(
Expand Down

0 comments on commit 1af58a9

Please sign in to comment.