Skip to content
Snippets Groups Projects
Commit 4185caf7 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

Merge branch 'fix_error_message' into 'master'

Fix wrong instance variable name in error message

See merge request !68
parents 392c01ac 362bd2f8
No related branches found
No related tags found
1 merge request!68Fix wrong instance variable name in error message
Pipeline #37885 passed
......@@ -968,7 +968,7 @@ class CachedDataSink(DataSink):
message = "No data written"
else:
message = "No enough data written: last written {} vs end {}".format(
self.last_data_index, self.end_index
self.last_written_data_index, self.end_index
)
logger.warning("Removing cache files: {}".format(message))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment