omnata-plugin-runtime 0.3.24a76__tar.gz → 0.3.24a77__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.3.24a76
3
+ Version: 0.3.24a77
4
4
  Summary: Classes and common runtime components for building and running Omnata Plugins
5
5
  Author: James Weakley
6
6
  Author-email: james.weakley@omnata.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.3.24-a76"
3
+ version = "0.3.24-a77"
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"
@@ -45,4 +45,3 @@ import logging
45
45
  if "snowflake_import_directory" in sys._xoptions:
46
46
  logger = logging.getLogger("snowflake")
47
47
  logger.setLevel(logging.WARN) # we don't want snowflake queries being logged by default
48
- logger.propagate = False
@@ -59,7 +59,7 @@ 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
  if session is not None:
62
- v = session.sql("select getvariable('SNOWFLAKE_CONNECTOR_LOG_LEVEL')").collect()
62
+ v = session.sql("select getvariable('SNOWFLAKE_LOG_LEVEL')").collect()
63
63
  result = v[0][0]
64
64
  if result is not None:
65
65
  default_snowflake_connector_log_level = result