bug fix: enforcing method specification

pull/17/head
Steve Nyemba 2 months ago
parent 685dfd3130
commit a347c0b624

@ -338,7 +338,7 @@ def reload (
url = f"http://localhost:{_port}/reload" url = f"http://localhost:{_port}/reload"
resp = requests.post(url, headers={"key":key}) resp = requests.post(url, headers={"key":key})
if resp.status_code == 200 : if resp.status_code == 200 :
_msg = f"""{PASSED} [bold]{_config['system']['layout']['header']['title']}[/bold] : successfully reloaded {url}""" _msg = f"""{PASSED} [bold]{_config['layout']['header']['title']}[/bold] : successfully reloaded {url}"""
else: else:
_msg = f"""{FAILED} failed to reload, status code {resp.status_code}\n{url} _msg = f"""{FAILED} failed to reload, status code {resp.status_code}\n{url}
""" """

@ -142,19 +142,20 @@ class delegate:
_pointer = _plugins[_uri] _pointer = _plugins[_uri]
if hasattr(_pointer,'mimetype') and _request.method in _pointer.method: _data = {}
if hasattr(_pointer,'mimetype') and hasattr(_pointer,'method'):
# #
# we constraint the methods given their execution ... # we constraint the methods given their execution ...
_mimeType = _pointer.mimetype _mimeType = _pointer.mimetype
_data = _pointer(request=_request,config=_config) if _request.method in _pointer.method :
else:
_mimeType = 'application/octet-stream'
try:
_data,_mimeType = _pointer(request=_request,config=_config)
except Exception as e:
_data = _pointer(request=_request,config=_config) _data = _pointer(request=_request,config=_config)
elif not hasattr(_pointer,'mimetype'):
_data,_mimeType = _pointer(request=_request,config=_config)
else:
_mimeType = 'application/octet-stream'
# _data = _pointer(request=_request,config=_config)
if type(_data) == pd.DataFrame : if type(_data) == pd.DataFrame :
_data = _data.to_json(orient='records') _data = _data.to_json(orient='records')
elif type(_data) in [dict,list] : elif type(_data) in [dict,list] :

Loading…
Cancel
Save