feldera 0.116.0__tar.gz → 0.117.0__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.
Potentially problematic release.
This version of feldera might be problematic. Click here for more details.
- {feldera-0.116.0 → feldera-0.117.0}/PKG-INFO +1 -1
- {feldera-0.116.0 → feldera-0.117.0}/feldera/pipeline.py +0 -10
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/pipeline.py +0 -1
- {feldera-0.116.0 → feldera-0.117.0}/feldera.egg-info/PKG-INFO +1 -1
- {feldera-0.116.0 → feldera-0.117.0}/pyproject.toml +1 -1
- {feldera-0.116.0 → feldera-0.117.0}/README.md +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/__init__.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/_callback_runner.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/_helpers.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/enums.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/output_handler.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/pipeline_builder.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/__init__.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/_helpers.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/_httprequests.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/config.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/errors.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/feldera_client.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/feldera_config.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/sql_table.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/rest/sql_view.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/runtime_config.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera/stats.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera.egg-info/SOURCES.txt +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera.egg-info/dependency_links.txt +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera.egg-info/requires.txt +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/feldera.egg-info/top_level.txt +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/setup.cfg +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/tests/test_pipeline_builder.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/tests/test_shared_pipeline0.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/tests/test_shared_pipeline1.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/tests/test_shared_pipeline_stress.py +0 -0
- {feldera-0.116.0 → feldera-0.117.0}/tests/test_udf.py +0 -0
|
@@ -1019,16 +1019,6 @@ pipeline '{self.name}' to sync checkpoint '{uuid}'"""
|
|
|
1019
1019
|
self.refresh()
|
|
1020
1020
|
return self._inner.deployment_location
|
|
1021
1021
|
|
|
1022
|
-
def program_binary_url(self) -> str:
|
|
1023
|
-
"""
|
|
1024
|
-
Return the program binary URL of the pipeline.
|
|
1025
|
-
This is the URL where the compiled program binary can be downloaded
|
|
1026
|
-
from.
|
|
1027
|
-
"""
|
|
1028
|
-
|
|
1029
|
-
self.refresh()
|
|
1030
|
-
return self._inner.program_binary_url
|
|
1031
|
-
|
|
1032
1022
|
def program_info(self) -> Mapping[str, Any]:
|
|
1033
1023
|
"""
|
|
1034
1024
|
Return the program info of the pipeline.
|
|
@@ -49,7 +49,6 @@ class Pipeline:
|
|
|
49
49
|
self.deployment_desired_status: Optional[str] = None
|
|
50
50
|
self.deployment_error: Optional[dict] = None
|
|
51
51
|
self.deployment_location: Optional[str] = None
|
|
52
|
-
self.program_binary_url: Optional[str] = None
|
|
53
52
|
self.program_info: Optional[dict] = (
|
|
54
53
|
None # info about input & output connectors and the schema
|
|
55
54
|
)
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|