Skip to content

Commit

Permalink
set SSL_VERIFY=false
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Jul 12, 2024
1 parent 87fa505 commit fe51560
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 59 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

- valid OWL profiles can be read on the Reason plugin input instead of validating the ontology in the plugin

### Fixed

- fixed errors on CMEM instances with self-signed/invalid certificates

### Changed

- use DCMI Metadata Terms for provenance
Expand Down
3 changes: 3 additions & 0 deletions cmem_plugin_reason/plugin_reason.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from collections.abc import Sequence
from datetime import UTC, datetime
from os import environ
from pathlib import Path
from tempfile import TemporaryDirectory
from time import time
Expand Down Expand Up @@ -33,6 +34,8 @@
validate_profiles,
)

environ["SSL_VERIFY"] = "false"


@Plugin(
label="Reason",
Expand Down
3 changes: 3 additions & 0 deletions cmem_plugin_reason/plugin_validate.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Ontology consistency validation workflow plugin module"""

from datetime import UTC, datetime
from os import environ
from pathlib import Path
from tempfile import TemporaryDirectory
from time import time
Expand Down Expand Up @@ -38,6 +39,8 @@
validate_profiles,
)

environ["SSL_VERIFY"] = "false"


@Plugin(
label="Validate OWL consistency",
Expand Down
118 changes: 59 additions & 59 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fe51560

Please sign in to comment.