omnata-plugin-runtime 0.8.0a195__tar.gz → 0.8.0a196__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/rate_limiting.py +1 -4
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/LICENSE +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/README.md +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.8.0-
|
3
|
+
version = "0.8.0-a196"
|
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"
|
@@ -15,13 +15,10 @@ import logging
|
|
15
15
|
from pydantic import Field, root_validator, PrivateAttr, field_serializer
|
16
16
|
from pydantic_core import to_jsonable_python
|
17
17
|
from .configuration import SubscriptableBaseModel
|
18
|
-
from .logging import logger
|
18
|
+
from .logging import logger, tracer
|
19
19
|
import pytz
|
20
20
|
from requests.adapters import HTTPAdapter
|
21
21
|
from urllib3.util.retry import Retry
|
22
|
-
from opentelemetry import trace
|
23
|
-
|
24
|
-
tracer = trace.get_tracer(__name__)
|
25
22
|
|
26
23
|
TimeUnitType = Literal["second", "minute", "hour", "day"]
|
27
24
|
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.8.0a195 → omnata_plugin_runtime-0.8.0a196}/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
|