port-ocean 0.9.2.dev1__py3-none-any.whl → 0.9.2.dev2__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.
Potentially problematic release.
This version of port-ocean might be problematic. Click here for more details.
- port_ocean/core/handlers/entity_processor/jq_entity_processor.py +7 -5
- {port_ocean-0.9.2.dev1.dist-info → port_ocean-0.9.2.dev2.dist-info}/METADATA +3 -3
- {port_ocean-0.9.2.dev1.dist-info → port_ocean-0.9.2.dev2.dist-info}/RECORD +6 -6
- {port_ocean-0.9.2.dev1.dist-info → port_ocean-0.9.2.dev2.dist-info}/LICENSE.md +0 -0
- {port_ocean-0.9.2.dev1.dist-info → port_ocean-0.9.2.dev2.dist-info}/WHEEL +0 -0
- {port_ocean-0.9.2.dev1.dist-info → port_ocean-0.9.2.dev2.dist-info}/entry_points.txt +0 -0
|
@@ -61,13 +61,13 @@ class JQEntityProcessor(BaseEntityProcessor):
|
|
|
61
61
|
)
|
|
62
62
|
result = await loop.run_in_executor(None, first_value_callable)
|
|
63
63
|
logger.info(
|
|
64
|
-
f"__FINISHED__ jq execution with pattern: {pattern}
|
|
64
|
+
f"__FINISHED__ jq execution with pattern: {pattern}. trace-id: {identifier} \n"
|
|
65
65
|
f"Result {result}"
|
|
66
66
|
)
|
|
67
67
|
return result
|
|
68
68
|
except Exception as e:
|
|
69
69
|
logger.error(
|
|
70
|
-
f"__FAILED__ jq execution with pattern: {pattern}
|
|
70
|
+
f"__FAILED__ jq execution with pattern: {pattern}. trace-id: {identifier} \n"
|
|
71
71
|
f"Error {e}"
|
|
72
72
|
)
|
|
73
73
|
return None
|
|
@@ -86,19 +86,21 @@ class JQEntityProcessor(BaseEntityProcessor):
|
|
|
86
86
|
)
|
|
87
87
|
value = await loop.run_in_executor(None, first_value_callable)
|
|
88
88
|
logger.info(
|
|
89
|
-
f"__FINISHED_BOOL__ jq execution with pattern: {pattern}
|
|
89
|
+
f"__FINISHED_BOOL__ jq execution with pattern: {pattern}. trace-id: {identifier} \n"
|
|
90
90
|
f"Result {value}"
|
|
91
91
|
)
|
|
92
92
|
except Exception as e:
|
|
93
93
|
logger.error(
|
|
94
|
-
f"__FAILED_BOOL__ jq execution with pattern: {pattern}
|
|
94
|
+
f"__FAILED_BOOL__ jq execution with pattern: {pattern}. trace-id: {identifier} \n"
|
|
95
95
|
f"Error {e}"
|
|
96
96
|
)
|
|
97
97
|
raise
|
|
98
98
|
|
|
99
99
|
if isinstance(value, bool):
|
|
100
100
|
return value
|
|
101
|
-
|
|
101
|
+
logger.error(
|
|
102
|
+
f"__FAILED_BOOL__ jq execution with pattern: {pattern}. Invalid type got {type(value)} instead. trace-id: {identifier}"
|
|
103
|
+
)
|
|
102
104
|
raise EntityProcessorException(
|
|
103
105
|
f"Expected boolean value, got {type(value)} instead"
|
|
104
106
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: port-ocean
|
|
3
|
-
Version: 0.9.2.
|
|
3
|
+
Version: 0.9.2.dev2
|
|
4
4
|
Summary: Port Ocean is a CLI tool for managing your Port projects.
|
|
5
5
|
Home-page: https://app.getport.io
|
|
6
6
|
Keywords: ocean,port-ocean,port
|
|
@@ -25,7 +25,7 @@ Requires-Dist: aiostream (>=0.5.2,<0.7.0)
|
|
|
25
25
|
Requires-Dist: click (>=8.1.3,<9.0.0) ; extra == "cli"
|
|
26
26
|
Requires-Dist: confluent-kafka (>=2.1.1,<3.0.0)
|
|
27
27
|
Requires-Dist: cookiecutter (>=2.1.1,<3.0.0) ; extra == "cli"
|
|
28
|
-
Requires-Dist: fastapi (>=0.100,<0.
|
|
28
|
+
Requires-Dist: fastapi (>=0.100,<0.112)
|
|
29
29
|
Requires-Dist: httpx (>=0.24.1,<0.28.0)
|
|
30
30
|
Requires-Dist: jinja2-time (>=0.2.0,<0.3.0) ; extra == "cli"
|
|
31
31
|
Requires-Dist: loguru (>=0.7.0,<0.8.0)
|
|
@@ -38,7 +38,7 @@ Requires-Dist: rich (>=13.4.1,<14.0.0) ; extra == "cli"
|
|
|
38
38
|
Requires-Dist: six (>=1.16.0,<2.0.0)
|
|
39
39
|
Requires-Dist: tomli (>=2.0.1,<3.0.0)
|
|
40
40
|
Requires-Dist: urllib3 (>=1.26.16,<3.0.0)
|
|
41
|
-
Requires-Dist: uvicorn (>=0.22,<0.
|
|
41
|
+
Requires-Dist: uvicorn (>=0.22,<0.31)
|
|
42
42
|
Requires-Dist: werkzeug (>=2.3.4,<4.0.0)
|
|
43
43
|
Project-URL: Repository, https://github.com/port-labs/Port-Ocean
|
|
44
44
|
Description-Content-Type: text/markdown
|
|
@@ -77,7 +77,7 @@ port_ocean/core/handlers/entities_state_applier/port/get_related_entities.py,sha
|
|
|
77
77
|
port_ocean/core/handlers/entities_state_applier/port/order_by_entities_dependencies.py,sha256=82BvU8t5w9uhsxX8hbnwuRPuWhW3cMeuT_5sVIkip1I,1550
|
|
78
78
|
port_ocean/core/handlers/entity_processor/__init__.py,sha256=FvFCunFg44wNQoqlybem9MthOs7p1Wawac87uSXz9U8,156
|
|
79
79
|
port_ocean/core/handlers/entity_processor/base.py,sha256=udR0w5TstTOS5xOfTjAZIEdldn4xr6Oyb3DylatYX3Q,1869
|
|
80
|
-
port_ocean/core/handlers/entity_processor/jq_entity_processor.py,sha256=
|
|
80
|
+
port_ocean/core/handlers/entity_processor/jq_entity_processor.py,sha256=qiho974oL73rM8VTA0pqNvqF7UfqoifBE-2F_7yRFNY,9407
|
|
81
81
|
port_ocean/core/handlers/port_app_config/__init__.py,sha256=8AAT5OthiVM7KCcM34iEgEeXtn2pRMrT4Dze5r1Ixbk,134
|
|
82
82
|
port_ocean/core/handlers/port_app_config/api.py,sha256=6VbKPwFzsWG0IYsVD81hxSmfqtHUFqrfUuj1DBX5g4w,853
|
|
83
83
|
port_ocean/core/handlers/port_app_config/base.py,sha256=oufdNLzUmEgJY5PgIz75zDlowWrjA-y8WR4UnM58E58,2897
|
|
@@ -122,8 +122,8 @@ port_ocean/utils/queue_utils.py,sha256=KWWl8YVnG-glcfIHhM6nefY-2sou_C6DVP1VynQwz
|
|
|
122
122
|
port_ocean/utils/repeat.py,sha256=0EFWM9d8lLXAhZmAyczY20LAnijw6UbIECf5lpGbOas,3231
|
|
123
123
|
port_ocean/utils/signal.py,sha256=K-6kKFQTltcmKDhtyZAcn0IMa3sUpOHGOAUdWKgx0_E,1369
|
|
124
124
|
port_ocean/version.py,sha256=UsuJdvdQlazzKGD3Hd5-U7N69STh8Dq9ggJzQFnu9fU,177
|
|
125
|
-
port_ocean-0.9.2.
|
|
126
|
-
port_ocean-0.9.2.
|
|
127
|
-
port_ocean-0.9.2.
|
|
128
|
-
port_ocean-0.9.2.
|
|
129
|
-
port_ocean-0.9.2.
|
|
125
|
+
port_ocean-0.9.2.dev2.dist-info/LICENSE.md,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
126
|
+
port_ocean-0.9.2.dev2.dist-info/METADATA,sha256=RppaJO-SJKGJKRnLueBlzeFx0eB5ickpxsAdyM_AgCA,6566
|
|
127
|
+
port_ocean-0.9.2.dev2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
128
|
+
port_ocean-0.9.2.dev2.dist-info/entry_points.txt,sha256=F_DNUmGZU2Kme-8NsWM5LLE8piGMafYZygRYhOVtcjA,54
|
|
129
|
+
port_ocean-0.9.2.dev2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|