omnata-plugin-runtime 0.5.7a150__tar.gz → 0.5.7a152__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/src/omnata_plugin_runtime/omnata_plugin.py +1 -2
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/LICENSE +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/README.md +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/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.5.7-
|
3
|
+
version = "0.5.7-a152"
|
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"
|
@@ -2418,7 +2418,7 @@ def omnata_udtf(
|
|
2418
2418
|
data_type='OBJECT',
|
2419
2419
|
description='The connection object, obtained from calling PLUGIN.PLUGIN_CONNECTION.')] + params
|
2420
2420
|
cls._omnata_udtf_params = params_new
|
2421
|
-
if len(
|
2421
|
+
if len(params_new) != len(function_params) -1:
|
2422
2422
|
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).")
|
2423
2423
|
|
2424
2424
|
@wraps(original_process)
|
@@ -2541,7 +2541,6 @@ def omnata_udf(
|
|
2541
2541
|
wrapper._is_omnata_udf = True
|
2542
2542
|
wrapper._omnata_udf_name = name
|
2543
2543
|
wrapper._omnata_udf_description = description
|
2544
|
-
wrapper._omnata_udf_params = params
|
2545
2544
|
wrapper._omnata_udf_result_data_type = result_data_type
|
2546
2545
|
wrapper._omnata_udf_expose_to_consumer = expose_to_consumer
|
2547
2546
|
return wrapper
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.5.7a150 → omnata_plugin_runtime-0.5.7a152}/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
|