omnata-plugin-runtime 0.2.91__py3-none-any.whl → 0.2.93__py3-none-any.whl
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/forms.py +1 -1
- omnata_plugin_runtime/omnata_plugin.py +0 -4
- {omnata_plugin_runtime-0.2.91.dist-info → omnata_plugin_runtime-0.2.93.dist-info}/METADATA +1 -1
- {omnata_plugin_runtime-0.2.91.dist-info → omnata_plugin_runtime-0.2.93.dist-info}/RECORD +6 -6
- {omnata_plugin_runtime-0.2.91.dist-info → omnata_plugin_runtime-0.2.93.dist-info}/LICENSE +0 -0
- {omnata_plugin_runtime-0.2.91.dist-info → omnata_plugin_runtime-0.2.93.dist-info}/WHEEL +0 -0
omnata_plugin_runtime/forms.py
CHANGED
@@ -465,7 +465,7 @@ class NGrokMTLSTunnel(SubscriptableBaseModel):
|
|
465
465
|
"""
|
466
466
|
SupportEdgeTermination: bool = True
|
467
467
|
post_tunnel_fields_function: Union[
|
468
|
-
Callable[[ConnectionConfigurationParameters], List[
|
468
|
+
Callable[[ConnectionConfigurationParameters], List[FormFieldBase]], str
|
469
469
|
]
|
470
470
|
@validator("post_tunnel_fields_function", always=True)
|
471
471
|
def function_name_convertor(cls, v) -> str:
|
@@ -1567,8 +1567,6 @@ def managed_outbound_processing(concurrency: int, batch_size: int):
|
|
1567
1567
|
def actual_decorator(method):
|
1568
1568
|
@wraps(method)
|
1569
1569
|
def _impl(self: OmnataPlugin, *method_args, **method_kwargs):
|
1570
|
-
logger.info(f"method_args: {method_args}")
|
1571
|
-
logger.info(f"method_kwargs: {method_kwargs}")
|
1572
1570
|
if self._sync_request is None: # pylint: disable=protected-access
|
1573
1571
|
raise ValueError(
|
1574
1572
|
"To use the managed_outbound_processing decorator, you must attach a sync request to the plugin instance (via the _sync_request property)"
|
@@ -1714,8 +1712,6 @@ def managed_inbound_processing(concurrency: int):
|
|
1714
1712
|
def actual_decorator(method):
|
1715
1713
|
@wraps(method)
|
1716
1714
|
def _impl(self:OmnataPlugin, *method_args, **method_kwargs):
|
1717
|
-
logger.info(f"method_args: {method_args}")
|
1718
|
-
logger.info(f"method_kwargs: {method_kwargs}")
|
1719
1715
|
if self._sync_request is None:
|
1720
1716
|
raise ValueError(
|
1721
1717
|
"To use the managed_inbound_processing decorator, you must attach an apply request to the plugin instance (via the _sync_request property)"
|
@@ -1,12 +1,12 @@
|
|
1
1
|
omnata_plugin_runtime/__init__.py,sha256=w63LVME5nY-hQ4BBzfacy9kvTunwqHGs8iiSPGAX2ns,1214
|
2
2
|
omnata_plugin_runtime/api.py,sha256=m8Yqw_lwSjN55ktN2AEgVSL1RYSbGWEvkE-M-GOEXdQ,6149
|
3
3
|
omnata_plugin_runtime/configuration.py,sha256=oNOGhZjtPihIad631FgOju7UzyT4ZZTYAM2-7fjhZqI,34186
|
4
|
-
omnata_plugin_runtime/forms.py,sha256=
|
4
|
+
omnata_plugin_runtime/forms.py,sha256=30CJB24TqfLYNnkplZdUbeqA-P9rUIBujVKXw_S-wKY,18371
|
5
5
|
omnata_plugin_runtime/logging.py,sha256=bn7eKoNWvtuyTk7RTwBS9UARMtqkiICtgMtzq3KA2V0,3272
|
6
|
-
omnata_plugin_runtime/omnata_plugin.py,sha256=
|
6
|
+
omnata_plugin_runtime/omnata_plugin.py,sha256=4yGbCOzLWYohV5dxQxebKwJB_dfDeWlSK-4zztwiv5M,86542
|
7
7
|
omnata_plugin_runtime/plugin_entrypoints.py,sha256=4ASzSL7mRWJ9uSqV31Zy8Oka5OIJI7JowzCX-boJkQc,25811
|
8
8
|
omnata_plugin_runtime/rate_limiting.py,sha256=se6MftQI5NrVHaLb1hByPCgAESPQhkAgIG7KIU1clDU,16562
|
9
|
-
omnata_plugin_runtime-0.2.
|
10
|
-
omnata_plugin_runtime-0.2.
|
11
|
-
omnata_plugin_runtime-0.2.
|
12
|
-
omnata_plugin_runtime-0.2.
|
9
|
+
omnata_plugin_runtime-0.2.93.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
10
|
+
omnata_plugin_runtime-0.2.93.dist-info/METADATA,sha256=_UHg4qWUldlPj6zm4Qvr-IMoDrzmZ-ijGhzeD9g9tt0,1086
|
11
|
+
omnata_plugin_runtime-0.2.93.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
12
|
+
omnata_plugin_runtime-0.2.93.dist-info/RECORD,,
|
File without changes
|
File without changes
|