We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53d58b4 commit ea975deCopy full SHA for ea975de
psconfig/perfsonar-psconfig/psconfig/base_agent.py
@@ -256,7 +256,7 @@ def run(self):
256
257
for transform_file in transform_files:
258
log_ctx = {"transform_file" : transform_file}
259
- self.logger.debug(self.logf.format("Loading transform file {}".format(archive_file), log_ctx))
+ self.logger.debug(self.logf.format("Loading transform file {}".format(transform_file), log_ctx))
260
261
transform_client = TransformConnect(url=transform_file)
262
transform = transform_client.get_config()
@@ -697,4 +697,4 @@ def validate(self):
697
validator = jsonvalidate(instance=self.data, schema=schema)
698
return []
699
except Exception as e:
700
- return [e]
+ return [e]
0 commit comments