e3f3de655b75c993540699168f7f0858094e1acb
[AGL/meta-agl-demo.git] / recipes-connectivity / kuksa-val / kuksa-dbc-feeder / 0003-dbc2val-fix-token-file-configuration-option.patch
1 From e2b5305a48a8c5ce5c149437e44d1b82f4b94432 Mon Sep 17 00:00:00 2001
2 From: Scott Murray <scott.murray@konsulko.com>
3 Date: Mon, 8 May 2023 14:58:06 -0400
4 Subject: [PATCH] dbc2val: fix token file configuration option
5
6 The client library changed the token option name to
7 'token_or_tokenfile', update things to match so that token
8 location can be configured again for dbcfeeder.py.
9
10 Upstream-Status: pending
11
12 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
13 ---
14  dbc2val/dbcfeederlib/serverclientwrapper.py | 2 +-
15  1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/dbc2val/dbcfeederlib/serverclientwrapper.py b/dbc2val/dbcfeederlib/serverclientwrapper.py
18 index 851516b..4f44913 100644
19 --- a/dbc2val/dbcfeederlib/serverclientwrapper.py
20 +++ b/dbc2val/dbcfeederlib/serverclientwrapper.py
21 @@ -60,7 +60,7 @@ class ServerClientWrapper(clientwrapper.ClientWrapper):
22          self._client_config["insecure"] = not self._tls
23          # Do not set token if it is empty to allow default client lib info to be used
24          if self._token_path != "":
25 -            self._client_config["token"] = self._token_path
26 +            self._client_config["token_or_tokenfile"] = self._token_path
27  
28          # TODO add data for root cert if using TLS and if given
29  
30 -- 
31 2.39.2
32