Wrong counting of DictCacheKeysRequestedFound metric (#9411)

* first

* bump test
This commit is contained in:
Nikita Mikhaylov 2020-02-28 03:07:00 +03:00 committed by GitHub
parent 6c0db94e21
commit 030a8a4164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -626,7 +626,7 @@ private:
on_key_not_found(key, cell_idx);
}
ProfileEvents::increment(ProfileEvents::DictCacheKeysRequestedMiss, found_num);
ProfileEvents::increment(ProfileEvents::DictCacheKeysRequestedFound, found_num);
ProfileEvents::increment(ProfileEvents::DictCacheKeysRequestedMiss, not_found_num);
}