omnata-plugin-runtime 0.10.32a296__tar.gz → 0.10.33a297__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.10.32a296 → omnata_plugin_runtime-0.10.33a297}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/plugin_entrypoints.py +2 -2
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/LICENSE +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/README.md +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/json_schema.py +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.10.32a296 → omnata_plugin_runtime-0.10.33a297}/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.10.
|
3
|
+
version = "0.10.33-a297"
|
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"
|
@@ -186,7 +186,7 @@ class PluginEntrypoint:
|
|
186
186
|
# for now, use the development mode flag to disable background workers
|
187
187
|
development_mode=self._plugin_instance.disable_background_workers,
|
188
188
|
sync_id=request.sync_id,
|
189
|
-
|
189
|
+
branch_name=request.sync_branch_name
|
190
190
|
)
|
191
191
|
try:
|
192
192
|
self._plugin_instance._configuration_parameters = parameters
|
@@ -244,7 +244,7 @@ class PluginEntrypoint:
|
|
244
244
|
streams=list(request.streams_configuration.included_streams.values()),
|
245
245
|
omnata_log_handler=omnata_log_handler,
|
246
246
|
sync_id=request.sync_id,
|
247
|
-
|
247
|
+
branch_name=request.sync_branch_name
|
248
248
|
)
|
249
249
|
try:
|
250
250
|
self._plugin_instance._configuration_parameters = parameters
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|