diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-09-02 12:31:05 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-09-27 09:48:36 +0200 |
commit | 083cb7af7fd35ac2e61192a4f6fe0137a1642ca0 (patch) | |
tree | 65e61bd18ddf3da243f2ca9f292d3dc1de5e194f | |
parent | 083caf00c61f9273522bb19a0cd89b83606808ec (diff) |
Adapt MAC retrieving to support several ogServers
Clients pills show MACs regardless of the ogServer they belong to. Flask
GET /client/mac API uses "get_server_from_clients()" function to send
the command to the correct ogServer.
-rw-r--r-- | ogcp/views.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ogcp/views.py b/ogcp/views.py index 0511d3c..16cdfd1 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -387,7 +387,8 @@ def scopes_status(): def get_client_mac(): ip = parse_elements(request.args.to_dict()) payload = {'client': list(ip)} - resp = g.server.get('/client/info', payload) + server = get_server_from_clients(list(ip)) + resp = server.get('/client/info', payload) client_info = resp.json() mac = client_info.get('mac') pretty_mac = (':'.join(mac[i:i+2] for i in range(0, 12, 2))).upper() |