omnata-plugin-runtime 0.4.10a107__tar.gz → 0.4.10a108__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/src/omnata_plugin_runtime/omnata_plugin.py +4 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/LICENSE +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/README.md +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.4.10a107 → omnata_plugin_runtime-0.4.10a108}/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.4.10-
|
3
|
+
version = "0.4.10-a108"
|
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"
|
@@ -688,6 +688,10 @@ class OutboundSyncRequest(SyncRequest):
|
|
688
688
|
results_df["APP_IDENTIFIER"] = None
|
689
689
|
if "LOADBATCH_ID" not in results_df:
|
690
690
|
results_df["LOADBATCH_ID"] = self._get_next_loadbatch_id()
|
691
|
+
# we dump the result data to a json string to make uploading to Snowflake less error prone, but only if it's not None
|
692
|
+
results_df["RESULT"] = results_df["RESULT"].apply(
|
693
|
+
lambda x: json.dumps(x) if x is not None else None
|
694
|
+
)
|
691
695
|
# trim out the columns we don't need to return
|
692
696
|
return results_df[
|
693
697
|
results_df.columns.intersection(
|
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
|