Skip to content

Commit 221ece6

Browse files
committed
Correct argument order
1 parent d52a649 commit 221ece6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

quixstreams/state/rocksdb/timestamped.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def get_last(
6262

6363
deletes = self._update_cache.get_deletes(cf_name=cf_name)
6464
updates = self._update_cache.get_updates_for_prefix(
65-
cf_name=cf_name, prefix=prefix
65+
prefix=prefix,
66+
cf_name=cf_name,
6667
)
6768

6869
cached = sorted(updates.items(), reverse=True)

0 commit comments

Comments
 (0)