jaaql-middleware-python 5.3.7__py3-none-any.whl → 5.3.9__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.
jaaql/constants.py CHANGED
@@ -218,5 +218,5 @@ ROLE__dba = "dba"
218
218
 
219
219
  PROTOCOL__postgres = "postgresql://"
220
220
 
221
- VERSION = "5.3.7"
221
+ VERSION = "5.3.9"
222
222
 
@@ -166,7 +166,7 @@ DOCUMENTATION__submit = SwaggerDocumentation(
166
166
  method=REST__POST,
167
167
  arguments=ARG_RESP__allow_all,
168
168
  response=RES__allow_all,
169
- parallel_verification=True
169
+ parallel_verification=False
170
170
  )
171
171
  )
172
172
 
@@ -178,7 +178,7 @@ DOCUMENTATION__execute = SwaggerDocumentation(
178
178
  method=REST__POST,
179
179
  arguments=ARG_RESP__allow_all,
180
180
  response=RES__allow_all,
181
- parallel_verification=True
181
+ parallel_verification=False
182
182
  )
183
183
  )
184
184
 
@@ -190,6 +190,6 @@ DOCUMENTATION__call_proc = SwaggerDocumentation(
190
190
  method=REST__POST,
191
191
  arguments=ARG_RESP__allow_all,
192
192
  response=RES__allow_all,
193
- parallel_verification=True
193
+ parallel_verification=False
194
194
  )
195
195
  )
jaaql/mvc/controller.py CHANGED
@@ -102,16 +102,20 @@ class JAAQLController(BaseJAAQLController):
102
102
  def prepare(http_inputs: dict, account_id: str):
103
103
  return self.model.fetch_domains(http_inputs, account_id)
104
104
 
105
+ # verification_hook (and ip_address, which follows it) are optional: the router only injects
106
+ # verification_hook when the method's parallel_verification is True. With it False these verify
107
+ # synchronously (verification_hook stays None), so there is no shared serial verifier thread to
108
+ # wedge/queue-stall - which is what timed out @dba requests during a \wipe dbms rebuild.
105
109
  @self.publish_route('/submit', DOCUMENTATION__submit)
106
- def submit(http_inputs: dict, account_id: str, verification_hook: queue.Queue, ip_address: str):
110
+ def submit(http_inputs: dict, account_id: str, verification_hook: queue.Queue = None, ip_address: str = None):
107
111
  return self.model.submit(http_inputs, account_id, verification_hook=verification_hook, ip_address=ip_address)
108
112
 
109
113
  @self.publish_route('/execute', DOCUMENTATION__execute)
110
- def execute(http_inputs: dict, account_id: str, verification_hook: queue.Queue):
114
+ def execute(http_inputs: dict, account_id: str, verification_hook: queue.Queue = None):
111
115
  return self.model.execute(http_inputs, account_id, verification_hook=verification_hook)
112
116
 
113
117
  @self.publish_route('/call-proc', DOCUMENTATION__execute)
114
- def call_proc(http_inputs: dict, account_id: str, verification_hook: queue.Queue):
118
+ def call_proc(http_inputs: dict, account_id: str, verification_hook: queue.Queue = None):
115
119
  return self.model.call_proc(http_inputs, account_id, verification_hook=verification_hook)
116
120
 
117
121
  @self.publish_route('/internal/clean', DOCUMENTATION__clean)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jaaql-middleware-python
3
- Version: 5.3.7
3
+ Version: 5.3.9
4
4
  Summary: The jaaql package, allowing for rapid development and deployment of RESTful HTTP applications
5
5
  Home-page: https://github.com/JAAQL/JAAQL-middleware-python
6
6
  Author: Software Quality Measurement and Improvement bv
@@ -1,6 +1,6 @@
1
1
  jaaql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  jaaql/config_constants.py,sha256=puoR6jfbXw8oXXEfbYNn2ysGwgiGTyuDjOj7F8acsTE,470
3
- jaaql/constants.py,sha256=3VNjcKnv4lN1hV04BK3B3ZTSsnzsAiCkhYKHYpdkPWY,7355
3
+ jaaql/constants.py,sha256=WR4TFXmnUW71NJLD8FOKttzntINhGJmTTuaKvNr_1E4,7355
4
4
  jaaql/generated_constants.py,sha256=pxmpTux7rrjJH6iqLb-R8RKJ4t0CeoGdnspjH5DiWgU,11327
5
5
  jaaql/jaaql.py,sha256=bfiEW9A8PlZIVjDJd_LOhCLBL8flc_f7w0umR6EWbU4,6614
6
6
  jaaql/patch.py,sha256=VE4B6jA492NCIxNIewbynh92jxVulmRFtB9hNEe6q94,149
@@ -16,7 +16,7 @@ jaaql/db/db_utils_no_circ.py,sha256=WLhk6EwsnTdLGUAjq3RZBH3FzgwEumh45A24WWysWmQ,
16
16
  jaaql/documentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  jaaql/documentation/documentation_internal.py,sha256=_tU92TI4Sd8AXj3b7-UOKCN1h4VR7SaakIv2ATC45Bo,22783
18
18
  jaaql/documentation/documentation_public.py,sha256=XU1Smw-1heWhCs-FDqTCTVCkAI2COHEy6fk2fhrwFN4,10932
19
- jaaql/documentation/documentation_shared.py,sha256=gTw3rT2hC6LTlJMXnwmxhSTh3xUetIJPtIhldptXF84,6654
19
+ jaaql/documentation/documentation_shared.py,sha256=3oty0tIsWb30pQAy6h6oDZ_g2fdzmvVocey0E8PSg1Q,6657
20
20
  jaaql/email/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  jaaql/email/email_manager.py,sha256=ublG0o2pvs019xxixNTi81kfYzqRglKUoqZOrAxqWN4,4450
22
22
  jaaql/email/email_manager_service.py,sha256=if8SnD1VdN2pKBwVsj8Y0aYgV3wiFJrHqZvArcXFVKY,46863
@@ -33,7 +33,7 @@ jaaql/migrations/migrations.py,sha256=XE46AzNmfAg9qiatIL_6ctjqiiuVMHUNEcVHhmuh4h
33
33
  jaaql/mvc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  jaaql/mvc/base_controller.py,sha256=I2EzDz3ace2f0Kjp9GNJk4A2cupKV4xINMZKbTJyYjI,39976
35
35
  jaaql/mvc/base_model.py,sha256=SJ2HOFNIqxhmNVIkt_zVtomVcwPBT3mxU8xCRbc7aVs,16916
36
- jaaql/mvc/controller.py,sha256=UV4hWAFeTrpRjLgPQSKTRxrGMIrycwM6hi7ulfqk03o,14794
36
+ jaaql/mvc/controller.py,sha256=UTSD5x5MRE75QJ66OY1k9_Sku6926NLXeubV5LN1Icw,15228
37
37
  jaaql/mvc/controller_interface.py,sha256=Wx8fA4lrqb_PPwkLNjJDxDloHB5JxmNt1Gv3SsDFqT4,274
38
38
  jaaql/mvc/exception_queries.py,sha256=lF65cj9KgJgRvyzxDjPDM05rHFSHF0jy1V8B77H9Rvo,7899
39
39
  jaaql/mvc/generated_queries.py,sha256=z1Jsyu-Y6D-Xd8LYvefzwv8C01NaBjHaHI7mcvv-WEk,72232
@@ -66,8 +66,8 @@ jaaql/utilities/options.py,sha256=75M7-oSeY4wmHGz3-su_c36yf_Csv9HxvTG7aRlGR0A,49
66
66
  jaaql/utilities/utils.py,sha256=nVYVhuHtWSjdaJaXe9eC1Usja56NO-V9SoBIlcHAK8Q,5166
67
67
  jaaql/utilities/utils_no_project_imports.py,sha256=YwcskR15dAqKdEiuF8zGx-tzwWkclSGil_zm_qZ8ylU,4626
68
68
  jaaql/utilities/vault.py,sha256=DudyQNtMtaRLL71IGQX0AI16Tg1id98BHTCQPyUNkmE,2243
69
- jaaql_middleware_python-5.3.7.dist-info/licenses/LICENSE.txt,sha256=wr50eN0TnkrCSuNwyiI81FLZqmrW3q0JqRlVVQIrGA0,18134
70
- jaaql_middleware_python-5.3.7.dist-info/METADATA,sha256=y7H58-dfAjs-cHuT72Ujtbhqdk_wCrtPd-Yix7VX2eA,1976
71
- jaaql_middleware_python-5.3.7.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
72
- jaaql_middleware_python-5.3.7.dist-info/top_level.txt,sha256=k5aKVQy77bPyfyNHITvo5m3FqdSAiiXbjT5S9D9KzgU,6
73
- jaaql_middleware_python-5.3.7.dist-info/RECORD,,
69
+ jaaql_middleware_python-5.3.9.dist-info/licenses/LICENSE.txt,sha256=wr50eN0TnkrCSuNwyiI81FLZqmrW3q0JqRlVVQIrGA0,18134
70
+ jaaql_middleware_python-5.3.9.dist-info/METADATA,sha256=E95ieLS0onPSnik_5uf7c8xrtT3hsZ286x5yhZvru0o,1976
71
+ jaaql_middleware_python-5.3.9.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
72
+ jaaql_middleware_python-5.3.9.dist-info/top_level.txt,sha256=k5aKVQy77bPyfyNHITvo5m3FqdSAiiXbjT5S9D9KzgU,6
73
+ jaaql_middleware_python-5.3.9.dist-info/RECORD,,