worker-automate-hub 0.5.716__py3-none-any.whl → 0.5.718__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.
- worker_automate_hub/api/client.py +2 -1
- worker_automate_hub/api/rpa_fila_service.py +2 -1
- {worker_automate_hub-0.5.716.dist-info → worker_automate_hub-0.5.718.dist-info}/METADATA +1 -1
- {worker_automate_hub-0.5.716.dist-info → worker_automate_hub-0.5.718.dist-info}/RECORD +6 -6
- {worker_automate_hub-0.5.716.dist-info → worker_automate_hub-0.5.718.dist-info}/WHEEL +0 -0
- {worker_automate_hub-0.5.716.dist-info → worker_automate_hub-0.5.718.dist-info}/entry_points.txt +0 -0
@@ -24,9 +24,10 @@ async def get_new_task(stop_event: threading.Event) -> RpaProcessoEntradaDTO:
|
|
24
24
|
try:
|
25
25
|
headers_basic = {"Authorization": f"Basic {env_config["API_AUTHORIZATION"]}"}
|
26
26
|
data = await get_new_task_info()
|
27
|
+
timeout = aiohttp.ClientTimeout(total=600)
|
27
28
|
|
28
29
|
async with aiohttp.ClientSession(
|
29
|
-
connector=aiohttp.TCPConnector(verify_ssl=True)
|
30
|
+
connector=aiohttp.TCPConnector(verify_ssl=True),timeout=timeout
|
30
31
|
) as session:
|
31
32
|
async with session.post(
|
32
33
|
f"{env_config["API_BASE_URL"]}/robo/new-job",
|
@@ -12,9 +12,10 @@ async def burn_queue(id_fila: str):
|
|
12
12
|
try:
|
13
13
|
|
14
14
|
headers_basic = {"Authorization": f"Basic {env_config["API_AUTHORIZATION"]}"}
|
15
|
+
timeout = aiohttp.ClientTimeout(total=600)
|
15
16
|
|
16
17
|
async with aiohttp.ClientSession(
|
17
|
-
connector=aiohttp.TCPConnector(verify_ssl=True)
|
18
|
+
connector=aiohttp.TCPConnector(verify_ssl=True), timeout=timeout
|
18
19
|
) as session:
|
19
20
|
async with session.delete(
|
20
21
|
f"{env_config["API_BASE_URL"]}/fila/burn-queue/{id_fila}",
|
@@ -1,12 +1,12 @@
|
|
1
1
|
worker_automate_hub/__init__.py,sha256=LV28uQvBfpPIqudGIMJmVB8E941MjXHcu8DMoX5n8AM,25
|
2
2
|
worker_automate_hub/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
worker_automate_hub/api/ahead_service.py,sha256=QbNrZf9q7fS0s-S5fZVytqC7dINi9u2f6aB6SDrGVVA,2231
|
4
|
-
worker_automate_hub/api/client.py,sha256=
|
4
|
+
worker_automate_hub/api/client.py,sha256=oOXEbXgF_LsFuOjF6vn4yPQE2jR7uY63yJbHNk7DFfY,25582
|
5
5
|
worker_automate_hub/api/datalake_service.py,sha256=qw_N_OOgDKDuPbI-fdYkWWTlT4CUtFTl0VVlZ0fLM-M,3001
|
6
6
|
worker_automate_hub/api/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
worker_automate_hub/api/helpers/api_helpers.py,sha256=SkheO2fXexeh-a4shr8Qzsz_kZhuSG0DJ7kbODctRbM,3696
|
8
8
|
worker_automate_hub/api/rdp_service.py,sha256=L7orr60FkJr6zjETtA4me8tRYCW9m1g-i5pq6AILUFo,1647
|
9
|
-
worker_automate_hub/api/rpa_fila_service.py,sha256=
|
9
|
+
worker_automate_hub/api/rpa_fila_service.py,sha256=K6qSTsQBfUqNVi0QYAwh--KDPm0MkowXICceLGxB2EI,2196
|
10
10
|
worker_automate_hub/api/rpa_historico_service.py,sha256=KuxcytNhlxjEe4R-LShmZGAFasLIVtpCHD5ykCmgf7E,10073
|
11
11
|
worker_automate_hub/api/webhook_service.py,sha256=S1a8IIS5LYY16I5E2pPPczaUnUz-_CwmD9_1QBdQD2g,1879
|
12
12
|
worker_automate_hub/cli.py,sha256=JB45pjPJ8_E-4xw0OjqDMcAw-tpDV0mjmvwJRTnTzY0,6862
|
@@ -98,7 +98,7 @@ worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbV
|
|
98
98
|
worker_automate_hub/utils/util.py,sha256=WooEK9h7xOwg_Z2g_SEFa7iJ7MbzQUzKcJBHCheKBUs,206793
|
99
99
|
worker_automate_hub/utils/utils_nfe_entrada.py,sha256=ERqMuyL7yf3ID5P6vHyFNh7N5LqNRduUKLY8069Oabo,37958
|
100
100
|
worker_automate_hub/worker.py,sha256=axdrr1xLTjWEyWfcyH3OCSpPTsyzck_fL_0u1DBLjvw,6525
|
101
|
-
worker_automate_hub-0.5.
|
102
|
-
worker_automate_hub-0.5.
|
103
|
-
worker_automate_hub-0.5.
|
104
|
-
worker_automate_hub-0.5.
|
101
|
+
worker_automate_hub-0.5.718.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
|
102
|
+
worker_automate_hub-0.5.718.dist-info/METADATA,sha256=A-EeDSXjFNi__M_VWc5c0l72GuioNmwM-h8Y9E3niR8,3049
|
103
|
+
worker_automate_hub-0.5.718.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
104
|
+
worker_automate_hub-0.5.718.dist-info/RECORD,,
|
File without changes
|
{worker_automate_hub-0.5.716.dist-info → worker_automate_hub-0.5.718.dist-info}/entry_points.txt
RENAMED
File without changes
|