소스 검색

Fixed storage

Cesar Rodas 1 년 전
부모
커밋
b744b79925
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      crates/storage/src/rocksdb.rs

+ 1 - 1
crates/storage/src/rocksdb.rs

@@ -356,7 +356,7 @@ impl RocksDb {
         // It should be sorted until an internal HashSet can be created, one that
         // respects the inserts time, because the database is sorted already by time
         // desc
-        events.sort_by(|a, b| b.created_at().cmp(&a.created_at()));
+        events.sort_by_key(|b| std::cmp::Reverse(b.created_at()));
 
         Ok(events)
     }