fixed lint error
This commit is contained in:
parent
409b499217
commit
cad56c813e
|
@ -107,7 +107,7 @@ class VaultSourcePlugin(SourcePlugin):
|
||||||
with open(auth_key, "r") as tfile:
|
with open(auth_key, "r") as tfile:
|
||||||
token = tfile.readline().rstrip("\n")
|
token = tfile.readline().rstrip("\n")
|
||||||
client.token = token
|
client.token = token
|
||||||
|
|
||||||
if auth_method == 'kubernetes':
|
if auth_method == 'kubernetes':
|
||||||
f = open('/var/run/secrets/kubernetes.io/serviceaccount/token')
|
f = open('/var/run/secrets/kubernetes.io/serviceaccount/token')
|
||||||
jwt = f.read()
|
jwt = f.read()
|
||||||
|
@ -275,7 +275,7 @@ class VaultDestinationPlugin(DestinationPlugin):
|
||||||
with open(auth_key, "r") as tfile:
|
with open(auth_key, "r") as tfile:
|
||||||
token = tfile.readline().rstrip("\n")
|
token = tfile.readline().rstrip("\n")
|
||||||
client.token = token
|
client.token = token
|
||||||
|
|
||||||
if auth_method == 'kubernetes':
|
if auth_method == 'kubernetes':
|
||||||
f = open('/var/run/secrets/kubernetes.io/serviceaccount/token')
|
f = open('/var/run/secrets/kubernetes.io/serviceaccount/token')
|
||||||
jwt = f.read()
|
jwt = f.read()
|
||||||
|
|
Loading…
Reference in New Issue