Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
Ugh, shows what I get for editing in GitHub
  • Loading branch information
WardLT authored Dec 2, 2023
1 parent 20ddaa8 commit ebffe1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examol/store/db/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def _writer(self):

# Checkpoint and advance the standoff
temp_path = self.path.parent / ("new-" + self.path.name)
logger.info(f'Started writing {len(db)} records to {temp_path}')
logger.info(f'Started writing {len(self.db)} records to {temp_path}')
self.export_records(temp_path)
move(temp_path, self.path)
next_write = monotonic() + self.write_freq
Expand Down

0 comments on commit ebffe1a

Please sign in to comment.