Skip to content

Commit ab38ce4

Browse files
committed
fix
1 parent ccf7559 commit ab38ce4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/funk/fd_funk_rec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ fd_funk_rec_query_try( fd_funk_t * funk,
4444
fd_funk_txn_xid_copy( pair->xid, &txn->xid );
4545
}
4646
fd_funk_rec_key_copy( pair->key, key );
47-
4847
for(;;) {
4948
int err = fd_funk_rec_map_query_try( funk->rec_map, pair, NULL, query, 0 );
5049
if( err == FD_MAP_SUCCESS ) break;
5150
if( err == FD_MAP_ERR_KEY ) return NULL;
5251
if( err == FD_MAP_ERR_AGAIN ) continue;
52+
FD_LOG_CRIT(( "query returned err %d", err ));
5353
}
5454
return fd_funk_rec_map_query_ele_const( query );
5555
}

0 commit comments

Comments
 (0)