summaryrefslogtreecommitdiffstats
path: root/templates/machine/ebisu/50_local.conf.inc
blob: c62dec4aead4a4449688da9a9e2a236dc0f42dbe (plain)
1
2
3
MACHINE = "ebisu"
#see meta-agl/meta-agl-bsp/conf/include/agl_ebisu.inc
require conf/include/agl_ebisu.inc
0 Subject: [PATCH] dbc2val: fix token file configuration option The client library changed the token option name to 'token_or_tokenfile', update things to match so that token location can be configured again for dbcfeeder.py. Upstream-Status: pending Signed-off-by: Scott Murray <scott.murray@konsulko.com> --- dbc2val/dbcfeederlib/serverclientwrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbc2val/dbcfeederlib/serverclientwrapper.py b/dbc2val/dbcfeederlib/serverclientwrapper.py index 1219a76..63bc12e 100644 --- a/dbc2val/dbcfeederlib/serverclientwrapper.py +++ b/dbc2val/dbcfeederlib/serverclientwrapper.py @@ -59,7 +59,7 @@ class ServerClientWrapper(clientwrapper.ClientWrapper): self._client_config["insecure"] = not self._tls # Do not set token if it is empty to allow default client lib info to be used if self._token_path != "": - self._client_config["token"] = self._token_path + self._client_config["token_or_tokenfile"] = self._token_path if self._root_ca_path: self._client_config['cacertificate'] = self._root_ca_path