apache-airflow-providers-edge3 1.3.1rc1__py3-none-any.whl → 1.4.0rc1__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 apache-airflow-providers-edge3 might be problematic. Click here for more details.
- airflow/providers/edge3/__init__.py +1 -1
- airflow/providers/edge3/cli/worker.py +1 -1
- airflow/providers/edge3/example_dags/win_test.py +1 -1
- airflow/providers/edge3/executors/edge_executor.py +31 -2
- airflow/providers/edge3/models/edge_job.py +17 -14
- airflow/providers/edge3/models/edge_logs.py +11 -8
- airflow/providers/edge3/models/edge_worker.py +23 -19
- airflow/providers/edge3/openapi/v2-edge-generated.yaml +3 -3
- airflow/providers/edge3/plugins/edge_executor_plugin.py +26 -10
- airflow/providers/edge3/plugins/www/dist/main.umd.cjs +19 -19
- airflow/providers/edge3/plugins/www/openapi-gen/requests/schemas.gen.ts +4 -4
- airflow/providers/edge3/plugins/www/openapi-gen/requests/types.gen.ts +1 -1
- airflow/providers/edge3/plugins/www/src/layouts/EdgeLayout.tsx +5 -1
- airflow/providers/edge3/plugins/www/src/main.tsx +6 -0
- airflow/providers/edge3/version_compat.py +5 -0
- airflow/providers/edge3/worker_api/routes/jobs.py +1 -1
- airflow/providers/edge3/worker_api/routes/worker.py +1 -1
- {apache_airflow_providers_edge3-1.3.1rc1.dist-info → apache_airflow_providers_edge3-1.4.0rc1.dist-info}/METADATA +34 -13
- {apache_airflow_providers_edge3-1.3.1rc1.dist-info → apache_airflow_providers_edge3-1.4.0rc1.dist-info}/RECORD +21 -21
- {apache_airflow_providers_edge3-1.3.1rc1.dist-info → apache_airflow_providers_edge3-1.4.0rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_edge3-1.3.1rc1.dist-info → apache_airflow_providers_edge3-1.4.0rc1.dist-info}/entry_points.txt +0 -0
|
@@ -81,9 +81,6 @@ export const $ExecuteTask = {
|
|
|
81
81
|
type: 'string',
|
|
82
82
|
title: 'Token'
|
|
83
83
|
},
|
|
84
|
-
ti: {
|
|
85
|
-
'$ref': '#/components/schemas/TaskInstance'
|
|
86
|
-
},
|
|
87
84
|
dag_rel_path: {
|
|
88
85
|
type: 'string',
|
|
89
86
|
format: 'path',
|
|
@@ -103,6 +100,9 @@ export const $ExecuteTask = {
|
|
|
103
100
|
],
|
|
104
101
|
title: 'Log Path'
|
|
105
102
|
},
|
|
103
|
+
ti: {
|
|
104
|
+
'$ref': '#/components/schemas/TaskInstance'
|
|
105
|
+
},
|
|
106
106
|
type: {
|
|
107
107
|
type: 'string',
|
|
108
108
|
const: 'ExecuteTask',
|
|
@@ -111,7 +111,7 @@ export const $ExecuteTask = {
|
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
113
|
type: 'object',
|
|
114
|
-
required: ['token', '
|
|
114
|
+
required: ['token', 'dag_rel_path', 'bundle_info', 'log_path', 'ti'],
|
|
115
115
|
title: 'ExecuteTask',
|
|
116
116
|
description: 'Execute the given Task.'
|
|
117
117
|
} as const;
|
|
@@ -52,10 +52,10 @@ export type EdgeWorkerState = 'starting' | 'running' | 'idle' | 'shutdown reques
|
|
|
52
52
|
*/
|
|
53
53
|
export type ExecuteTask = {
|
|
54
54
|
token: string;
|
|
55
|
-
ti: TaskInstance;
|
|
56
55
|
dag_rel_path: string;
|
|
57
56
|
bundle_info: BundleInfo;
|
|
58
57
|
log_path: string | null;
|
|
58
|
+
ti: TaskInstance;
|
|
59
59
|
type?: "ExecuteTask";
|
|
60
60
|
};
|
|
61
61
|
|
|
@@ -30,9 +30,13 @@ export const EdgeLayout = () => {
|
|
|
30
30
|
{ label: "Edge Jobs", value: "plugin/edge_jobs" },
|
|
31
31
|
];
|
|
32
32
|
|
|
33
|
+
// Extract base URL from HTML base element to handle webserver.base_url configuration
|
|
34
|
+
const baseUrl = document.querySelector("base")?.href ?? "http://localhost:8080/";
|
|
35
|
+
const basename = new URL(baseUrl).pathname;
|
|
36
|
+
|
|
33
37
|
return (
|
|
34
38
|
<Box p={2} /* Compensate for parent padding from ExternalView */>
|
|
35
|
-
<BrowserRouter>
|
|
39
|
+
<BrowserRouter basename={basename}>
|
|
36
40
|
<NavTabs tabs={tabs} />
|
|
37
41
|
<Routes>
|
|
38
42
|
<Route path="plugin/edge_worker" element={<WorkerPage />} />
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
import { ChakraProvider } from "@chakra-ui/react";
|
|
20
20
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
21
21
|
import axios from "axios";
|
|
22
|
+
import { OpenAPI } from "openapi/requests/core/OpenAPI";
|
|
22
23
|
import { FC } from "react";
|
|
23
24
|
|
|
24
25
|
import { ColorModeProvider } from "src/context/colorMode";
|
|
@@ -33,6 +34,11 @@ export type PluginComponentProps = object;
|
|
|
33
34
|
* Main plugin component
|
|
34
35
|
*/
|
|
35
36
|
const PluginComponent: FC<PluginComponentProps> = () => {
|
|
37
|
+
// Set the base URL for OpenAPI client from the HTML base tag
|
|
38
|
+
const baseHref = document.querySelector("head > base")?.getAttribute("href") ?? "";
|
|
39
|
+
const baseUrl = new URL(baseHref, globalThis.location.origin);
|
|
40
|
+
OpenAPI.BASE = baseUrl.pathname.replace(/\/$/, ""); // Remove trailing slash
|
|
41
|
+
|
|
36
42
|
// ensure HTTP API calls are authenticated with current session token
|
|
37
43
|
axios.interceptors.request.use(tokenHandler);
|
|
38
44
|
|
|
@@ -34,3 +34,8 @@ def get_base_airflow_version_tuple() -> tuple[int, int, int]:
|
|
|
34
34
|
|
|
35
35
|
AIRFLOW_V_3_0_PLUS = get_base_airflow_version_tuple() >= (3, 0, 0)
|
|
36
36
|
AIRFLOW_V_3_1_PLUS = get_base_airflow_version_tuple() >= (3, 1, 0)
|
|
37
|
+
|
|
38
|
+
__all__ = [
|
|
39
|
+
"AIRFLOW_V_3_0_PLUS",
|
|
40
|
+
"AIRFLOW_V_3_1_PLUS",
|
|
41
|
+
]
|
|
@@ -21,6 +21,7 @@ from typing import Annotated
|
|
|
21
21
|
|
|
22
22
|
from sqlalchemy import select, update
|
|
23
23
|
|
|
24
|
+
from airflow.providers.common.compat.sdk import timezone
|
|
24
25
|
from airflow.providers.edge3.models.edge_job import EdgeJobModel
|
|
25
26
|
from airflow.providers.edge3.worker_api.auth import jwt_token_authorization_rest
|
|
26
27
|
from airflow.providers.edge3.worker_api.datamodels import (
|
|
@@ -38,7 +39,6 @@ from airflow.providers.edge3.worker_api.routes._v2_compat import (
|
|
|
38
39
|
status,
|
|
39
40
|
)
|
|
40
41
|
from airflow.stats import Stats
|
|
41
|
-
from airflow.utils import timezone
|
|
42
42
|
from airflow.utils.sqlalchemy import with_row_locks
|
|
43
43
|
from airflow.utils.state import TaskInstanceState
|
|
44
44
|
|
|
@@ -22,6 +22,7 @@ from typing import Annotated
|
|
|
22
22
|
|
|
23
23
|
from sqlalchemy import select
|
|
24
24
|
|
|
25
|
+
from airflow.providers.common.compat.sdk import timezone
|
|
25
26
|
from airflow.providers.edge3.models.edge_worker import EdgeWorkerModel, EdgeWorkerState, set_metrics
|
|
26
27
|
from airflow.providers.edge3.worker_api.auth import jwt_token_authorization_rest
|
|
27
28
|
from airflow.providers.edge3.worker_api.datamodels import (
|
|
@@ -41,7 +42,6 @@ from airflow.providers.edge3.worker_api.routes._v2_compat import (
|
|
|
41
42
|
status,
|
|
42
43
|
)
|
|
43
44
|
from airflow.stats import Stats
|
|
44
|
-
from airflow.utils import timezone
|
|
45
45
|
|
|
46
46
|
worker_router = AirflowRouter(
|
|
47
47
|
tags=["Worker"],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-edge3
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-edge3 for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,edge3,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -21,11 +21,12 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
23
|
Requires-Dist: apache-airflow>=2.10.0rc1
|
|
24
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.8.0rc1
|
|
24
25
|
Requires-Dist: pydantic>=2.11.0
|
|
25
26
|
Requires-Dist: retryhttp>=1.2.0,!=1.3.0
|
|
26
27
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
27
|
-
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-edge3/1.
|
|
28
|
-
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-edge3/1.
|
|
28
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-edge3/1.4.0/changelog.html
|
|
29
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-edge3/1.4.0
|
|
29
30
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
30
31
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
31
32
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -56,7 +57,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
56
57
|
|
|
57
58
|
Package ``apache-airflow-providers-edge3``
|
|
58
59
|
|
|
59
|
-
Release: ``1.
|
|
60
|
+
Release: ``1.4.0``
|
|
60
61
|
|
|
61
62
|
|
|
62
63
|
Handle edge workers on remote sites via HTTP(s) connection and orchestrates work over distributed sites.
|
|
@@ -81,7 +82,7 @@ This is a provider package for ``edge3`` provider. All classes for this provider
|
|
|
81
82
|
are in ``airflow.providers.edge3`` python package.
|
|
82
83
|
|
|
83
84
|
You can find package information and changelog for the provider
|
|
84
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.
|
|
85
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.4.0/>`_.
|
|
85
86
|
|
|
86
87
|
Installation
|
|
87
88
|
------------
|
|
@@ -95,14 +96,34 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
|
95
96
|
Requirements
|
|
96
97
|
------------
|
|
97
98
|
|
|
98
|
-
|
|
99
|
-
PIP package
|
|
100
|
-
|
|
101
|
-
``apache-airflow``
|
|
102
|
-
``
|
|
103
|
-
``
|
|
104
|
-
|
|
99
|
+
========================================== ===================
|
|
100
|
+
PIP package Version required
|
|
101
|
+
========================================== ===================
|
|
102
|
+
``apache-airflow`` ``>=2.10.0``
|
|
103
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
104
|
+
``pydantic`` ``>=2.11.0``
|
|
105
|
+
``retryhttp`` ``>=1.2.0,!=1.3.0``
|
|
106
|
+
========================================== ===================
|
|
107
|
+
|
|
108
|
+
Cross provider package dependencies
|
|
109
|
+
-----------------------------------
|
|
110
|
+
|
|
111
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
112
|
+
You need to install the specified providers in order to use them.
|
|
113
|
+
|
|
114
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
115
|
+
|
|
116
|
+
.. code-block:: bash
|
|
117
|
+
|
|
118
|
+
pip install apache-airflow-providers-edge3[common.compat]
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
================================================================================================================== =================
|
|
122
|
+
Dependent package Extra
|
|
123
|
+
================================================================================================================== =================
|
|
124
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
125
|
+
================================================================================================================== =================
|
|
105
126
|
|
|
106
127
|
The changelog for the provider package can be found in the
|
|
107
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.
|
|
128
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.4.0/changelog.html>`_.
|
|
108
129
|
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
airflow/providers/edge3/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
|
-
airflow/providers/edge3/__init__.py,sha256=
|
|
2
|
+
airflow/providers/edge3/__init__.py,sha256=ka1YMtwo4Y2IE_2hpQN5AfqrPmUZxfPSd1yCekInsz8,1494
|
|
3
3
|
airflow/providers/edge3/get_provider_info.py,sha256=Ek27-dB4UALHUFYoYjtoQIGq0p7zeHcEgmELHvpVmCU,6836
|
|
4
|
-
airflow/providers/edge3/version_compat.py,sha256=
|
|
4
|
+
airflow/providers/edge3/version_compat.py,sha256=JRhqYf4UklO3xwmtCRPSXLQqq0yD1pCts3bhwxgVC0s,1670
|
|
5
5
|
airflow/providers/edge3/cli/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
6
6
|
airflow/providers/edge3/cli/api_client.py,sha256=334KHVB4eMSzRpQ5emS56o-RTUJQprxf5Q3xQldCHDQ,7440
|
|
7
7
|
airflow/providers/edge3/cli/dataclasses.py,sha256=JUuvvmzSVWvG9uOEfzLIiXrTZ-HbESvu50jkPpVIYVw,2895
|
|
8
8
|
airflow/providers/edge3/cli/edge_command.py,sha256=aZ8P9x9FBR_pyuDxi6LaLkz4ubGOBDk1RNNp0ppTbKY,21747
|
|
9
9
|
airflow/providers/edge3/cli/signalling.py,sha256=sf4S6j6OoP0bLkda3UlCmlZabjv5wsMypy3kAvx56Z0,3220
|
|
10
|
-
airflow/providers/edge3/cli/worker.py,sha256=
|
|
10
|
+
airflow/providers/edge3/cli/worker.py,sha256=tW99X4RQSFLZMaYbjJ8TMF7QVz1pIpWbi0D6M0KS_bI,17238
|
|
11
11
|
airflow/providers/edge3/example_dags/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
12
12
|
airflow/providers/edge3/example_dags/integration_test.py,sha256=_bY2tVjUZvKAJXzm0Ozrwas0efRU4X9kULKWxu7LYB4,6264
|
|
13
13
|
airflow/providers/edge3/example_dags/win_notepad.py,sha256=zYcrKqODN4KLZQ-5wNnZQQskrDd5LA-nKJNgKQDntSE,2832
|
|
14
|
-
airflow/providers/edge3/example_dags/win_test.py,sha256=
|
|
14
|
+
airflow/providers/edge3/example_dags/win_test.py,sha256=9iZ8Ro1Pi9RhYVcFFyyzpb6q3M0Qt8Ft1wJUF1O3dQc,13565
|
|
15
15
|
airflow/providers/edge3/executors/__init__.py,sha256=y830gGSKCvjOcLwLuCDp84NCrHWWB9RSSH1qvJpFhyY,923
|
|
16
|
-
airflow/providers/edge3/executors/edge_executor.py,sha256=
|
|
16
|
+
airflow/providers/edge3/executors/edge_executor.py,sha256=IZw8HS80o6eYD2FVG9OR5t30-Z6dFyVl_x4NqmoA10A,19233
|
|
17
17
|
airflow/providers/edge3/models/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
18
|
-
airflow/providers/edge3/models/edge_job.py,sha256=
|
|
19
|
-
airflow/providers/edge3/models/edge_logs.py,sha256=
|
|
20
|
-
airflow/providers/edge3/models/edge_worker.py,sha256=
|
|
18
|
+
airflow/providers/edge3/models/edge_job.py,sha256=Q43X_PBnhG_u93fwyesWDS-6q4fQrjXPdoWgb1zAQl4,3569
|
|
19
|
+
airflow/providers/edge3/models/edge_logs.py,sha256=rFVz4gR0GYiEpwai5Q2C5znkiuaUQTjq5EhfLnQUeZQ,3022
|
|
20
|
+
airflow/providers/edge3/models/edge_worker.py,sha256=TavuZFmXO-evglU08JDr0TQMOaW-qiHvj6CRs2l481E,12942
|
|
21
21
|
airflow/providers/edge3/openapi/__init__.py,sha256=0O-WvmDx8GeKSoECpHYrbe0hW-LgjlKny3VqTCpBQeQ,927
|
|
22
22
|
airflow/providers/edge3/openapi/edge_worker_api_v1.yaml,sha256=GAE2IdOXmcUueNy5KFkLBgNpoWnOjnHT9TrW5NZEWpI,24938
|
|
23
|
-
airflow/providers/edge3/openapi/v2-edge-generated.yaml,sha256=
|
|
23
|
+
airflow/providers/edge3/openapi/v2-edge-generated.yaml,sha256=VBjkPbZjG73QiU75H7UK45q0lLpMsK5E45L9j-LQypI,39727
|
|
24
24
|
airflow/providers/edge3/plugins/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
25
|
-
airflow/providers/edge3/plugins/edge_executor_plugin.py,sha256=
|
|
25
|
+
airflow/providers/edge3/plugins/edge_executor_plugin.py,sha256=MMOHOaXfWvn2c1JjQONSWsweD3aJvtVxxCQBabOsA88,13510
|
|
26
26
|
airflow/providers/edge3/plugins/templates/edge_worker_hosts.html,sha256=0_P2yfZwpy3Kvqd3GBvu_PgmmKCUbso3ieW8aYa76iU,8997
|
|
27
27
|
airflow/providers/edge3/plugins/templates/edge_worker_jobs.html,sha256=bZ-6ysmIy6j4eR_TPHiqbgb3qpNMKCcEEB-SpxuxNgc,2831
|
|
28
28
|
airflow/providers/edge3/plugins/www/.gitignore,sha256=glCQO0xBUzFDPKNjn3_mw7F6e51j3sjyo4knJAUqMz4,281
|
|
@@ -40,7 +40,7 @@ airflow/providers/edge3/plugins/www/tsconfig.lib.json,sha256=Z5M3uhtIZ0Uc9CFjc7F
|
|
|
40
40
|
airflow/providers/edge3/plugins/www/tsconfig.node.json,sha256=On9I0qUPqRSyxJNKP5OlnWX_rYR1CKZV8A3IgF1UxvE,680
|
|
41
41
|
airflow/providers/edge3/plugins/www/vite.config.ts,sha256=d1AANLpXH9lmreFQXxKJDGLDK20GOSp2tlhcKT9aLQk,2876
|
|
42
42
|
airflow/providers/edge3/plugins/www/dist/main.d.ts,sha256=eZKjnWzeXgUOt4RhqL-a2YYXWpSCboNcEQs5ZykL0kk,10
|
|
43
|
-
airflow/providers/edge3/plugins/www/dist/main.umd.cjs,sha256=
|
|
43
|
+
airflow/providers/edge3/plugins/www/dist/main.umd.cjs,sha256=dsNelKd0H04oRdTMvnQBVwnl3zhd-7z7V8fxGkK9WFc,578023
|
|
44
44
|
airflow/providers/edge3/plugins/www/openapi-gen/queries/common.ts,sha256=mnY7x73LFNTprAZjwPRbl9W1VSmKXPflqtaQa4ocOxw,3531
|
|
45
45
|
airflow/providers/edge3/plugins/www/openapi-gen/queries/ensureQueryData.ts,sha256=CCvoih7AKo7voklUkF6EjcjMMVB0HOTY53mBFn2Nly0,1317
|
|
46
46
|
airflow/providers/edge3/plugins/www/openapi-gen/queries/index.ts,sha256=p941sYs7pyF4XLKPxPgBXIko0H6s2U4sowFygzJ6Jos,114
|
|
@@ -49,9 +49,9 @@ airflow/providers/edge3/plugins/www/openapi-gen/queries/prefetch.ts,sha256=pRKqx
|
|
|
49
49
|
airflow/providers/edge3/plugins/www/openapi-gen/queries/queries.ts,sha256=XQUk9_HwXC3A-3X_QeiB5V_Q3n1jv6Cql__-x4CPmBM,9616
|
|
50
50
|
airflow/providers/edge3/plugins/www/openapi-gen/queries/suspense.ts,sha256=fB73K0oi6HFwvqVz8q3zM-lOp6H4EMS2zt3Lqii59cA,2186
|
|
51
51
|
airflow/providers/edge3/plugins/www/openapi-gen/requests/index.ts,sha256=eykx9J6S_c0q9PV3cHOSrSw9OnGo7njAdBjYO3VA_N8,326
|
|
52
|
-
airflow/providers/edge3/plugins/www/openapi-gen/requests/schemas.gen.ts,sha256=
|
|
52
|
+
airflow/providers/edge3/plugins/www/openapi-gen/requests/schemas.gen.ts,sha256=5x9zAxJcNwBnRPR4gfNbSTmwWAo1NpuoBwN3Fzr5Ilg,20065
|
|
53
53
|
airflow/providers/edge3/plugins/www/openapi-gen/requests/services.gen.ts,sha256=x02frfqDlIJ6qez5CJRPpESVFBvfUO03FRCES_eqzWM,15207
|
|
54
|
-
airflow/providers/edge3/plugins/www/openapi-gen/requests/types.gen.ts,sha256=
|
|
54
|
+
airflow/providers/edge3/plugins/www/openapi-gen/requests/types.gen.ts,sha256=qP3NbFB6BjQfg3PnSIXbS1ZF94HZc7jNyhMZTz05OQo,19003
|
|
55
55
|
airflow/providers/edge3/plugins/www/openapi-gen/requests/core/ApiError.ts,sha256=lfUGx_azgmK9WTL4eCD6q3MSHgi9kwbORAtzKpRD_pU,611
|
|
56
56
|
airflow/providers/edge3/plugins/www/openapi-gen/requests/core/ApiRequestOptions.ts,sha256=TXwm2FFITqANuXL9C6kdYUtG6TJEuQWtERQOrbS1zxA,617
|
|
57
57
|
airflow/providers/edge3/plugins/www/openapi-gen/requests/core/ApiResult.ts,sha256=i4pH_Yw7ZHyZmsb4PIXn8LhRqJVMFIp4fZ6OkPO32k4,166
|
|
@@ -59,7 +59,7 @@ airflow/providers/edge3/plugins/www/openapi-gen/requests/core/CancelablePromise.
|
|
|
59
59
|
airflow/providers/edge3/plugins/www/openapi-gen/requests/core/OpenAPI.ts,sha256=Gu0_JlDV061xLt7NF2w9zb2gpP84-rybL86sgX71Ef0,1477
|
|
60
60
|
airflow/providers/edge3/plugins/www/openapi-gen/requests/core/request.ts,sha256=jG833drJAZFBKN9hnEL6RIRmAfys9eb5rC8p99wBWXk,9598
|
|
61
61
|
airflow/providers/edge3/plugins/www/src/dev.tsx,sha256=5sZlduF3IFFXKZMxV06hLsxhcCuWNzUMM4Ni1RITG8w,1114
|
|
62
|
-
airflow/providers/edge3/plugins/www/src/main.tsx,sha256=
|
|
62
|
+
airflow/providers/edge3/plugins/www/src/main.tsx,sha256=VdKKPV6q3oYr_k9g2u56_jpDHST-7QWqRy115PXq9S8,2189
|
|
63
63
|
airflow/providers/edge3/plugins/www/src/theme.ts,sha256=6Fbo0Mwbah6HTupBYyUqOt_T8DAZtDG2UABtOoxUe1w,21458
|
|
64
64
|
airflow/providers/edge3/plugins/www/src/vite-env.d.ts,sha256=eY6SmeO3WS4Bxne5yY6kn_PXLilnlFfluNuZswLUDys,848
|
|
65
65
|
airflow/providers/edge3/plugins/www/src/components/AddQueueButton.tsx,sha256=Ahyf0_NXqEM0UjIdMyTuANKToD1coqfEjdsQiudK_Fg,4159
|
|
@@ -83,7 +83,7 @@ airflow/providers/edge3/plugins/www/src/components/ui/index.ts,sha256=oMFdotQy8u
|
|
|
83
83
|
airflow/providers/edge3/plugins/www/src/context/colorMode/ColorModeProvider.tsx,sha256=D9tDe9sYEQvCSQ_3fmf6zCaS9rZnzWoZrvb3qrJ0qf0,1024
|
|
84
84
|
airflow/providers/edge3/plugins/www/src/context/colorMode/index.ts,sha256=nTdA6xva8PrXEybO-JdQN4oSY9GHlHCPvUwREzJvhDM,879
|
|
85
85
|
airflow/providers/edge3/plugins/www/src/context/colorMode/useColorMode.tsx,sha256=YYcXELSveM_10fOwZeCh9yxiN8H7essKz1QDiy9Jio8,1122
|
|
86
|
-
airflow/providers/edge3/plugins/www/src/layouts/EdgeLayout.tsx,sha256=
|
|
86
|
+
airflow/providers/edge3/plugins/www/src/layouts/EdgeLayout.tsx,sha256=iLCnHvKaTD7hfEqm6M-HEyvPmuCy2VuTVaRdmFK0SjQ,1812
|
|
87
87
|
airflow/providers/edge3/plugins/www/src/layouts/NavTabs.tsx,sha256=I3UV7KnEhIXfyYVRf4muloLAcpx_x6dFIPGSTRwMQfI,2126
|
|
88
88
|
airflow/providers/edge3/plugins/www/src/pages/JobsPage.tsx,sha256=9spI-Ru7ANKkadWGiiILHnllbc-TRmIA4iY3-YM5Kww,4971
|
|
89
89
|
airflow/providers/edge3/plugins/www/src/pages/WorkerPage.tsx,sha256=nvEuqk0tr1Y_JMGJTYDzmdadwB-LiJ4OrdmqNfHhiwA,5070
|
|
@@ -103,11 +103,11 @@ airflow/providers/edge3/worker_api/routes/__init__.py,sha256=9hdXHABrVpkbpjZgUft
|
|
|
103
103
|
airflow/providers/edge3/worker_api/routes/_v2_compat.py,sha256=PuzSL9dMuji_MsluCoPdCvYboqJD0h4zERcIoB5kJvI,4543
|
|
104
104
|
airflow/providers/edge3/worker_api/routes/_v2_routes.py,sha256=xcbf6RdOHx5zOl9JlIAW9nQhiy3ju-EIyq1tbXGJSYc,10800
|
|
105
105
|
airflow/providers/edge3/worker_api/routes/health.py,sha256=1nRn_lvGhaMkGKGeEJbD_p7tJdMbC1LhEmwuQbqI9oE,1076
|
|
106
|
-
airflow/providers/edge3/worker_api/routes/jobs.py,sha256=
|
|
106
|
+
airflow/providers/edge3/worker_api/routes/jobs.py,sha256=Hu32JwzPNpNHRrQlnqDhjKaJyH84K46fz1GExye4258,5755
|
|
107
107
|
airflow/providers/edge3/worker_api/routes/logs.py,sha256=uk0SZ5hAimj3sAcq1FYCDu0AXYNeTeyjZDGBvw-986E,4945
|
|
108
108
|
airflow/providers/edge3/worker_api/routes/ui.py,sha256=qXELQI6RZ80fLDTB0K6Z2H__ofJwRSvK6J1UYW3JC7g,9786
|
|
109
|
-
airflow/providers/edge3/worker_api/routes/worker.py,sha256=
|
|
110
|
-
apache_airflow_providers_edge3-1.
|
|
111
|
-
apache_airflow_providers_edge3-1.
|
|
112
|
-
apache_airflow_providers_edge3-1.
|
|
113
|
-
apache_airflow_providers_edge3-1.
|
|
109
|
+
airflow/providers/edge3/worker_api/routes/worker.py,sha256=UcB20SV5Nhpi22NI0H5BQjlX2U9PgaFbyDVNd9PYfhg,8991
|
|
110
|
+
apache_airflow_providers_edge3-1.4.0rc1.dist-info/entry_points.txt,sha256=7WUIGfd3o9NvvbK5trbZxNXTgYGc6pqg74wZPigbx5o,206
|
|
111
|
+
apache_airflow_providers_edge3-1.4.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
112
|
+
apache_airflow_providers_edge3-1.4.0rc1.dist-info/METADATA,sha256=zjOzB5DcSoei6hA7D7IHRWsqYoKMBnDwAQFrRUAvWrM,6117
|
|
113
|
+
apache_airflow_providers_edge3-1.4.0rc1.dist-info/RECORD,,
|
|
File without changes
|