omnata-plugin-runtime 0.6.0a163__tar.gz → 0.6.1a164__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.6.0a163 → omnata_plugin_runtime-0.6.1a164}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/src/omnata_plugin_runtime/omnata_plugin.py +2 -2
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/LICENSE +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/README.md +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/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.6.
|
3
|
+
version = "0.6.1-a164"
|
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"
|
@@ -2357,7 +2357,7 @@ def omnata_udtf(
|
|
2357
2357
|
data_type='OBJECT',
|
2358
2358
|
description='The connection object, obtained from calling PLUGIN.PLUGIN_CONNECTION.')] + params
|
2359
2359
|
cls._omnata_udtf_params = params_new
|
2360
|
-
if len(
|
2360
|
+
if len(cls._omnata_udtf_params) != len(function_params) -1:
|
2361
2361
|
raise ValueError(f"You must document all the parameters of the 'process' function in the @omnata_udtf decorator in the same order ('connection_parameters' will be included automatically).")
|
2362
2362
|
|
2363
2363
|
@wraps(original_process)
|
@@ -2471,7 +2471,7 @@ def omnata_udf(
|
|
2471
2471
|
data_type='OBJECT',
|
2472
2472
|
description='The connection object, obtained from calling PLUGIN.PLUGIN_CONNECTION.')] + params
|
2473
2473
|
func._omnata_udf_params = params_new
|
2474
|
-
if len(
|
2474
|
+
if len(func._omnata_udf_params) != len(function_params):
|
2475
2475
|
raise ValueError(f"You must document all the parameters of the function in the @omnata_udf decorator in the same order ('connection_parameters' will be included automatically).")
|
2476
2476
|
|
2477
2477
|
@wraps(func)
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.0a163 → omnata_plugin_runtime-0.6.1a164}/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
|