-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(nft_ingester): improve cancellation of signature fetching #450
base: develop
Are you sure you want to change the base?
Conversation
7b5c364
to
41940b7
Compare
let mut rate_guard = rate.lock().unwrap(); | ||
*rate_guard = current_rate; | ||
} | ||
*rate.lock().unwrap() = current_rate; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will not it be locked until the end of the scope? Was it fixed in 2024 edition?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'll roll it back as a safeguard but honestly idk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likewise ⚰️
41940b7
to
c0e9667
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, thank you.
No description provided.