Fix GCS log upload

The google-auth Credential class added some new variables in the
constructor; make sure that we call it in order to avoid later
reference errors.

Change-Id: I338a3368b90a6612801ba587982d3053bbd3ba78
This commit is contained in:
James E. Blair 2020-07-16 12:32:02 -07:00
parent 8e4b52617c
commit c0abf5cffc

View File

@ -260,6 +260,7 @@ def sizeof_fmt(num, suffix='B'):
class Credentials(gce_cred.Credentials): class Credentials(gce_cred.Credentials):
def __init__(self, path): def __init__(self, path):
super().__init__()
self._path = path self._path = path
self.refresh(None) self.refresh(None)