Skip to content

Commit

Permalink
remove SSL_VERIFY env variable setting
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper committed Aug 14, 2024
1 parent 3fa1408 commit f6ee106
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions cmem_plugin_reason/plugin_reason.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Reasoning 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 @@ -36,8 +35,6 @@
validate_profiles,
)

environ["SSL_VERIFY"] = "false"


@Plugin(
label="Reason",
Expand Down
4 changes: 0 additions & 4 deletions cmem_plugin_reason/plugin_validate.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""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 @@ -37,8 +36,6 @@
validate_profiles,
)

environ["SSL_VERIFY"] = "false"


@Plugin(
label="Validate OWL consistency",
Expand Down Expand Up @@ -279,6 +276,5 @@ def execute(self, inputs: None, context: ExecutionContext) -> Entities | None:
operation_desc="ontologies validated.",
)
)

with TemporaryDirectory() as self.temp:
return self._execute(context)

0 comments on commit f6ee106

Please sign in to comment.