Details
-
Bug
-
Status: Resolved
-
Low
-
Resolution: Fixed
-
None
-
Low
Description
In our PROD logs, we noticed a lot of hint metrics even though we have disabled hinted handoffs.
The reason is StorageProxy.ShouldHint has an inverted if condition.
We should also wrap the if (hintWindowExpired) block in if (DatabaseDescriptor.hintedHandoffEnabled()).
The fix is easy, and I can provide a patch.