omnata-plugin-runtime 0.3.22a66__tar.gz → 0.3.22a67__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/src/omnata_plugin_runtime/omnata_plugin.py +1 -1
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/LICENSE +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/README.md +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/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.3.22-
|
3
|
+
version = "0.3.22-a67"
|
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"
|
@@ -1197,7 +1197,7 @@ class InboundSyncRequest(SyncRequest):
|
|
1197
1197
|
f"Primary key fields '{primary_key_fields}' were not present in all records for stream {stream_name}"
|
1198
1198
|
)
|
1199
1199
|
# concatenate the primary key fields to form the APP_IDENTIFIER
|
1200
|
-
results_df["APP_IDENTIFIER"] = results_df["RECORD_DATA"].apply(lambda x: "-".join([str(field) for field in primary_key_fields]))
|
1200
|
+
results_df["APP_IDENTIFIER"] = results_df["RECORD_DATA"].apply(lambda x: "-".join([str(x[field]) for field in primary_key_fields]))
|
1201
1201
|
else:
|
1202
1202
|
# the primary key field could contain a nested field, so we need to check for that
|
1203
1203
|
# we need to check that each record in the results contains the primary key field
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.3.22a66 → omnata_plugin_runtime-0.3.22a67}/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
|