omnata-plugin-runtime 0.5.7a137__tar.gz → 0.5.7a138__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/src/omnata_plugin_runtime/omnata_plugin.py +11 -11
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/LICENSE +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/README.md +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/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-a138"
|
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"
|
@@ -2252,23 +2252,23 @@ def consumer_udtf(
|
|
2252
2252
|
# Get the original 'process' method from the class
|
2253
2253
|
original_process = getattr(cls, 'process')
|
2254
2254
|
sig = signature(original_process)
|
2255
|
-
|
2256
|
-
if len(
|
2255
|
+
function_params = sig.parameters
|
2256
|
+
if len(function_params) < 2:
|
2257
2257
|
raise ValueError("The function must have the self parameter, plus at least the mandatory 'connection_parameters' parameter.")
|
2258
2258
|
# Ensure the first argument is mandatory and positional
|
2259
|
-
first_param_name = list(
|
2259
|
+
first_param_name = list(function_params.keys())[0]
|
2260
2260
|
|
2261
2261
|
if first_param_name != 'self':
|
2262
2262
|
raise ValueError(f"The first argument should be 'self', instead it was '{first_param_name}'.")
|
2263
2263
|
|
2264
|
-
second_param_name = list(
|
2264
|
+
second_param_name = list(function_params.keys())[1]
|
2265
2265
|
|
2266
2266
|
if second_param_name != 'connection_parameters':
|
2267
2267
|
raise ValueError(f"The second argument should be 'connection_parameters', instead it was {second_param_name}.")
|
2268
2268
|
|
2269
2269
|
|
2270
|
-
if
|
2271
|
-
raise ValueError(f"The second argument must be a ConnectionConfigurationParameters, instead it was a {
|
2270
|
+
if function_params[second_param_name].annotation != ConnectionConfigurationParameters:
|
2271
|
+
raise ValueError(f"The second argument must be a ConnectionConfigurationParameters, instead it was a {function_params[second_param_name].annotation}.")
|
2272
2272
|
|
2273
2273
|
@wraps(original_process)
|
2274
2274
|
def wrapped_process(self, connection_parameters, *args, **kwargs):
|
@@ -2328,15 +2328,15 @@ def consumer_udf(
|
|
2328
2328
|
result_data_type: str):
|
2329
2329
|
def decorator(func):
|
2330
2330
|
sig = signature(func)
|
2331
|
-
|
2332
|
-
if len(
|
2331
|
+
function_params = sig.parameters
|
2332
|
+
if len(function_params) == 0:
|
2333
2333
|
raise ValueError("The function must have at least one parameter.")
|
2334
2334
|
# Ensure the first argument is mandatory and positional
|
2335
|
-
first_param_name = list(
|
2335
|
+
first_param_name = list(function_params.keys())[0]
|
2336
2336
|
if first_param_name != 'connection_parameters':
|
2337
2337
|
raise ValueError(f"The first argument should be 'connection_parameters', instead it was '{first_param_name}'.")
|
2338
|
-
if
|
2339
|
-
raise ValueError(f"The first argument must be a ConnectionConfigurationParameters, instead it was a {
|
2338
|
+
if function_params[first_param_name].annotation != ConnectionConfigurationParameters:
|
2339
|
+
raise ValueError(f"The first argument must be a ConnectionConfigurationParameters, instead it was a {function_params[first_param_name].annotation}.")
|
2340
2340
|
|
2341
2341
|
@wraps(func)
|
2342
2342
|
def wrapper(self, connection_parameters, *args, **kwargs):
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.5.7a137 → omnata_plugin_runtime-0.5.7a138}/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
|