omnata-plugin-runtime 0.3.24a74__tar.gz → 0.3.24a75__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/plugin_entrypoints.py +5 -4
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/LICENSE +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/README.md +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.3.24-
|
3
|
+
version = "0.3.24-a75"
|
4
4
|
description = "Classes and common runtime components for building and running Omnata Plugins"
|
5
5
|
authors = ["James Weakley <james.weakley@omnata.com>"]
|
6
6
|
readme = "README.md"
|
@@ -59,10 +59,11 @@ class PluginEntrypoint:
|
|
59
59
|
self._plugin_instance._session = session # pylint: disable=protected-access
|
60
60
|
# the sync engine can override the snowflake connector log level via a session variable
|
61
61
|
default_snowflake_connector_log_level:str = "WARN"
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
62
|
+
if session is not None:
|
63
|
+
v = session.sql("select getvariable('SNOWFLAKE_CONNECTOR_LOG_LEVEL')").collect()
|
64
|
+
result = v[0][0]
|
65
|
+
if result is not None:
|
66
|
+
default_snowflake_connector_log_level = result
|
66
67
|
snowflake_logger = logging.getLogger("snowflake.connector")
|
67
68
|
snowflake_logger.setLevel(default_snowflake_connector_log_level)
|
68
69
|
snowflake_logger.propagate = False
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.3.24a74 → omnata_plugin_runtime-0.3.24a75}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|