edri 2025.11.1rc1__tar.gz → 2025.11.1rc2__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.
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/PKG-INFO +1 -1
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/listener.py +23 -19
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri.egg-info/PKG-INFO +1 -1
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/setup.py +1 -1
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/README.md +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/manager/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/manager/manager_base.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/manager/manager_priority_base.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/manager/worker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/worker/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/worker/worker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/worker/worker_process.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/abstract/worker/worker_thread.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/broker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/dataclass/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/dataclass/api_event.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/dataclass/client.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/dataclass/file.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/extensions/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/extensions/url_extension.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/extensions/url_prefix.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/handlers/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/handlers/base_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/handlers/html_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/handlers/http_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/handlers/rest_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/handlers/websocket_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/middleware.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/static_pages/documentation.j2 +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/static_pages/health_check_status.j2 +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/static_pages/status_300.j2 +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/static_pages/status_400.j2 +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/api/static_pages/status_500.j2 +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/config/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/config/constant.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/config/setting.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/directive/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/directive/base.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/directive/html.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/directive/http.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/event.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/health_checker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/injection.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/dataclass/response.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/client/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/client/documentation.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/client/register.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/client/unregister.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/group/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/group/client.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/group/manage.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/manage/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/manage/list_registered.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/manage/register.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/manage/unregister.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/api/manage/unregister_all.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/group/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/group/manager.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/group/router.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/group/scheduler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/group/store.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/group/switch.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/group/test.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/manager/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/manager/restart.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/manager/stream_close.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/manager/stream_create.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/manager/stream_message.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/manager/worker_quit.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/demands.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/health_check.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/last_events.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/send_from.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/subscribe.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/subscribe_connector.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/subscribed_external.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/subscribed_new.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/unsubscribe.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/router/unsubscribe_all.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/scheduler/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/scheduler/cancel.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/scheduler/set.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/scheduler/set_or_update.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/scheduler/update.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/store/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/store/delete.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/store/get.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/store/get_callback.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/events/edri/store/set.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/router/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/router/cache.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/router/connector/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/router/connector/connector.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/router/connector/socket.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/router/health_checker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/router/router.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/switch/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/switch/connection.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/switch/forwarder.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/switch/receiver.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/switch/sender.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/switch/switch.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/function.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/json_encoder.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/manager/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/manager/scheduler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/manager/store.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/normalized_default_dict.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/queue.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/shared_memory_pipe.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/storage.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/transformation.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/validation.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri/utility/watcher.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri.egg-info/SOURCES.txt +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri.egg-info/dependency_links.txt +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri.egg-info/requires.txt +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/edri.egg-info/top_level.txt +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/setup.cfg +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/abstract/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/abstract/manager/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/abstract/manager/test_manager_base.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/abstract/manager/test_manager_base_priority.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/abstract/worker/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/abstract/worker/test_worker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/api/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/api/handlers/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/api/handlers/test_base_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/api/handlers/test_html_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/api/handlers/test_http_handler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/api/test_broker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/dataclass/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/dataclass/event/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/dataclass/event/test_event.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/dataclass/event/test_event_init.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/dataclass/event/test_response.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/events/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/events/test/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/events/test/event_request.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/events/test/ping.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/events/test/ping2.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/router/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/router/test_cache.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/router/test_health_checker.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/router/test_router.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/test_edri_init.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/manager/__init__.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/manager/test_scheduler.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/manager/test_store.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/test_function.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/test_json_encoder.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/test_normalized_default_dict.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/test_shared_memory_pipe.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/test_storage.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/test_transformation.py +0 -0
- {edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/utility/test_validation.py +0 -0
|
@@ -179,25 +179,29 @@ class Listener(Process):
|
|
|
179
179
|
})
|
|
180
180
|
return
|
|
181
181
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
182
|
+
content_lengths = handler.headers.get("content-length")
|
|
183
|
+
if content_lengths:
|
|
184
|
+
content_length = int(content_lengths[0])
|
|
185
|
+
if content_length > 0:
|
|
186
|
+
try:
|
|
187
|
+
await handler.parse_body(event_constructor)
|
|
188
|
+
except Exception as e:
|
|
189
|
+
self.logger.error("Parse of body failed", exc_info=e)
|
|
190
|
+
reasons = [{
|
|
191
|
+
"status_code": HTTPStatus.BAD_REQUEST,
|
|
192
|
+
"message": "Parse of body failed",
|
|
193
|
+
}]
|
|
194
|
+
current_exception = e
|
|
195
|
+
while current_exception:
|
|
196
|
+
reasons.append({
|
|
197
|
+
"message": str(current_exception),
|
|
198
|
+
})
|
|
199
|
+
current_exception = current_exception.__context__
|
|
200
|
+
await handler.response_error(HTTPStatus.BAD_REQUEST, {
|
|
201
|
+
"reasons": reasons
|
|
202
|
+
})
|
|
203
|
+
return
|
|
204
|
+
|
|
201
205
|
# Create Event
|
|
202
206
|
try:
|
|
203
207
|
event = handler.create_event(event_constructor)
|
|
@@ -122,7 +122,7 @@ Whether you're building a real-time data processing system, a distributed servic
|
|
|
122
122
|
|
|
123
123
|
setup(
|
|
124
124
|
name='edri',
|
|
125
|
-
version='2025.11.
|
|
125
|
+
version='2025.11.01rc2',
|
|
126
126
|
packages=find_packages(),
|
|
127
127
|
description='Event Driven Routing Infrastructure',
|
|
128
128
|
long_description=long_description,
|
|
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
|
|
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
|
|
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
|
|
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
|
{edri-2025.11.1rc1 → edri-2025.11.1rc2}/tests/abstract/manager/test_manager_base_priority.py
RENAMED
|
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
|