Skip to content

Commit

Permalink
A bit more description about promise state not completed
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed May 16, 2024
1 parent 69376a5 commit a1da606
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions crates/partition-store/src/promise_table/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,7 @@ impl<'a> ReadOnlyPromiseTable for RocksDBTransaction<'a> {
}

impl<'a> PromiseTable for RocksDBTransaction<'a> {
async fn put_promise(
&mut self,
service_id: &ServiceId,
key: &ByteString,
metadata: Promise,
) {
async fn put_promise(&mut self, service_id: &ServiceId, key: &ByteString, metadata: Promise) {
put_promise_metadata(self, service_id, key, metadata)
}

Expand Down

0 comments on commit a1da606

Please sign in to comment.