pybiolib 1.1.1095__py3-none-any.whl → 1.1.1099__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.
- biolib/compute_node/remote_host_proxy.py +17 -7
- {pybiolib-1.1.1095.dist-info → pybiolib-1.1.1099.dist-info}/METADATA +1 -1
- {pybiolib-1.1.1095.dist-info → pybiolib-1.1.1099.dist-info}/RECORD +6 -6
- {pybiolib-1.1.1095.dist-info → pybiolib-1.1.1099.dist-info}/LICENSE +0 -0
- {pybiolib-1.1.1095.dist-info → pybiolib-1.1.1099.dist-info}/WHEEL +0 -0
- {pybiolib-1.1.1095.dist-info → pybiolib-1.1.1099.dist-info}/entry_points.txt +0 -0
@@ -180,19 +180,19 @@ http {{
|
|
180
180
|
default "";
|
181
181
|
}}
|
182
182
|
|
183
|
-
map $request_method $
|
184
|
-
POST "{bearer_token}";
|
183
|
+
map $request_method $bearer_token_on_get {{
|
185
184
|
GET "{bearer_token}";
|
186
185
|
default "";
|
187
186
|
}}
|
188
187
|
|
189
|
-
map $request_method $
|
190
|
-
|
188
|
+
map $request_method $bearer_token_on_patch {{
|
189
|
+
PATCH "{bearer_token}";
|
191
190
|
default "";
|
192
191
|
}}
|
193
192
|
|
194
|
-
map $request_method $
|
193
|
+
map $request_method $bearer_token_on_patch_and_get {{
|
195
194
|
PATCH "{bearer_token}";
|
195
|
+
GET "{bearer_token}";
|
196
196
|
default "";
|
197
197
|
}}
|
198
198
|
|
@@ -246,7 +246,17 @@ http {{
|
|
246
246
|
|
247
247
|
location ~* "^/api/jobs/(?<job_id>[a-z0-9-]{{36}})/$" {{
|
248
248
|
proxy_pass {base_url}/api/jobs/$job_id/;
|
249
|
-
proxy_set_header authorization $
|
249
|
+
proxy_set_header authorization $bearer_token_on_patch_and_get;
|
250
|
+
proxy_set_header caller-job-uuid "{self._job_uuid}";
|
251
|
+
proxy_set_header cookie "";
|
252
|
+
proxy_ssl_server_name on;
|
253
|
+
}}
|
254
|
+
|
255
|
+
location ~* "^/api/jobs/create_job_with_data/$" {{
|
256
|
+
# Note: Using $1 here as URI part from regex must be used for proxy_pass
|
257
|
+
proxy_pass {base_url}/api/jobs/$1;
|
258
|
+
proxy_set_header authorization $bearer_token_on_post;
|
259
|
+
proxy_set_header caller-job-uuid "{self._job_uuid}";
|
250
260
|
proxy_set_header cookie "";
|
251
261
|
proxy_ssl_server_name on;
|
252
262
|
}}
|
@@ -254,7 +264,7 @@ http {{
|
|
254
264
|
location ~* "^/api/jobs/$" {{
|
255
265
|
# Note: Using $1 here as URI part from regex must be used for proxy_pass
|
256
266
|
proxy_pass {base_url}/api/jobs/$1;
|
257
|
-
proxy_set_header authorization $
|
267
|
+
proxy_set_header authorization $bearer_token_on_post;
|
258
268
|
proxy_set_header caller-job-uuid "{self._job_uuid}";
|
259
269
|
proxy_set_header cookie "";
|
260
270
|
proxy_ssl_server_name on;
|
@@ -67,7 +67,7 @@ biolib/compute_node/job_worker/job_worker.py,sha256=PxdPPxUn1TUBWbXE-fWHZHG3A83C
|
|
67
67
|
biolib/compute_node/job_worker/large_file_system.py,sha256=7ElJ8tKihLdet2kZ5rcpoj0VGbz1k3cG_jKGye-T23o,9731
|
68
68
|
biolib/compute_node/job_worker/mappings.py,sha256=Z48Kg4nbcOvsT2-9o3RRikBkqflgO4XeaWxTGz-CNvI,2499
|
69
69
|
biolib/compute_node/job_worker/utils.py,sha256=wgxcIA8yAhUPdCwyvuuJ0JmreyWmmUoBO33vWtG60xg,1282
|
70
|
-
biolib/compute_node/remote_host_proxy.py,sha256=
|
70
|
+
biolib/compute_node/remote_host_proxy.py,sha256=jhov-R8F0EjAHCkajKqwpXqbYhOhR6FW7_NBOySuheA,13562
|
71
71
|
biolib/compute_node/socker_listener_thread.py,sha256=T5_UikA3MB9bD5W_dckYLPTgixh72vKUlgbBvj9dbM0,1601
|
72
72
|
biolib/compute_node/socket_sender_thread.py,sha256=YgamPHeUm2GjMFGx8qk-99WlZhEs-kAb3q_2O6qByig,971
|
73
73
|
biolib/compute_node/utils.py,sha256=VdxArTs02d5iNL5U3J7_Mo57nIcNUxgn8aJh8PDLqIU,4529
|
@@ -106,8 +106,8 @@ biolib/validators/validate_argument.py,sha256=B-tqgMgXuTvJLhaMWcBTUKw18L5brJtIdf
|
|
106
106
|
biolib/validators/validate_module.py,sha256=aHe0YAWFSrMbZNw-h64oweqruDS-k7KOUzK1ECpG8Wg,13298
|
107
107
|
biolib/validators/validate_zip_file.py,sha256=2j8kJ1WF2u5OyMkfEDCoU_BvOtr8gLPWTtsmUG0zQ5g,1655
|
108
108
|
biolib/validators/validator_utils.py,sha256=2QCJWdKiLTUHsvjDidrXKBjH95kKsEmFwd17muTGL0M,2135
|
109
|
-
pybiolib-1.1.
|
110
|
-
pybiolib-1.1.
|
111
|
-
pybiolib-1.1.
|
112
|
-
pybiolib-1.1.
|
113
|
-
pybiolib-1.1.
|
109
|
+
pybiolib-1.1.1099.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
110
|
+
pybiolib-1.1.1099.dist-info/METADATA,sha256=O_CtrQ-NiTu2Hd4FUdf0GcQZehl18qCaEYydTHjmas4,1612
|
111
|
+
pybiolib-1.1.1099.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
112
|
+
pybiolib-1.1.1099.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
113
|
+
pybiolib-1.1.1099.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|