pyegeria 0.8.4.29__py3-none-any.whl → 0.8.4.31__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.
- commands/ops/load_archive.py +1 -1
- pyegeria/create_tech_guid_lists.py +1 -1
- pyegeria/feedback_manager_omvs.py +577 -576
- pyegeria/platform_services.py +2 -2
- {pyegeria-0.8.4.29.dist-info → pyegeria-0.8.4.31.dist-info}/METADATA +2 -2
- {pyegeria-0.8.4.29.dist-info → pyegeria-0.8.4.31.dist-info}/RECORD +9 -9
- {pyegeria-0.8.4.29.dist-info → pyegeria-0.8.4.31.dist-info}/LICENSE +0 -0
- {pyegeria-0.8.4.29.dist-info → pyegeria-0.8.4.31.dist-info}/WHEEL +0 -0
- {pyegeria-0.8.4.29.dist-info → pyegeria-0.8.4.31.dist-info}/entry_points.txt +0 -0
commands/ops/load_archive.py
CHANGED
@@ -59,7 +59,7 @@ def load_archive(file, server, view_server, url, userid, password, timeout):
|
|
59
59
|
s_client = EgeriaTech(view_server, url, userid, password)
|
60
60
|
token = s_client.create_egeria_bearer_token()
|
61
61
|
server_guid = s_client.get_guid_for_name(server)
|
62
|
-
s_client.add_archive_file(file, server_guid,
|
62
|
+
s_client.add_archive_file(file, server_guid, time_out=timeout)
|
63
63
|
|
64
64
|
click.echo(f"Loaded archive: {file}")
|
65
65
|
|
@@ -3,7 +3,7 @@ SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
Copyright Contributors to the ODPi Egeria project.
|
4
4
|
|
5
5
|
Script to create a new file to initiate tech guids.
|
6
|
-
These GUIDS should be copied into the __init__.py.
|
6
|
+
These GUIDS should be copied into the pyegeria/__init__.py.
|
7
7
|
|
8
8
|
"""
|
9
9
|
from datetime import datetime
|