moose-lib 0.4.284__tar.gz → 0.4.285__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 moose-lib might be problematic. Click here for more details.
- {moose_lib-0.4.284 → moose_lib-0.4.285}/PKG-INFO +1 -1
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/main.py +2 -1
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib.egg-info/PKG-INFO +1 -1
- {moose_lib-0.4.284 → moose_lib-0.4.285}/README.md +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/__init__.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/blocks.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/clients/__init__.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/clients/redis_client.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/commons.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/config/__init__.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/config/config_file.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/config/runtime.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/data_models.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/__init__.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/_registry.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/consumption.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/ingest_api.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/ingest_pipeline.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/materialized_view.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/olap_table.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/registry.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/sql_resource.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/stream.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/types.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/view.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2/workflow.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/dmv2-serializer.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/internal.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/query_param.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/streaming/__init__.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/streaming/streaming_function_runner.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib/tasks.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib.egg-info/SOURCES.txt +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib.egg-info/dependency_links.txt +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib.egg-info/requires.txt +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/moose_lib.egg-info/top_level.txt +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/setup.cfg +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/setup.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/tests/__init__.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/tests/conftest.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/tests/test_moose.py +0 -0
- {moose_lib-0.4.284 → moose_lib-0.4.285}/tests/test_redis_client.py +0 -0
|
@@ -322,6 +322,7 @@ class WorkflowClient:
|
|
|
322
322
|
else:
|
|
323
323
|
return [f"{os.getcwd()}/app/scripts/{name}", input_data]
|
|
324
324
|
|
|
325
|
+
# TODO: Remove when workflows dmv1 is removed
|
|
325
326
|
def load_consolidated_configs(self):
|
|
326
327
|
try:
|
|
327
328
|
file_path = os.path.join(os.getcwd(), ".moose", "workflow_configs.json")
|
|
@@ -330,7 +331,7 @@ class WorkflowClient:
|
|
|
330
331
|
config_map = {config['name']: config for config in data}
|
|
331
332
|
return config_map
|
|
332
333
|
except Exception as e:
|
|
333
|
-
|
|
334
|
+
print(f"Could not load configs for workflows v1: {e}")
|
|
334
335
|
|
|
335
336
|
def parse_timeout_to_timedelta(self, timeout_str: str) -> timedelta:
|
|
336
337
|
if timeout_str.endswith('h'):
|
|
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
|
|
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
|