We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d50a3 commit 4b92ff5Copy full SHA for 4b92ff5
vm/src/dictdatatype.rs
@@ -253,10 +253,8 @@ impl<T: Clone> Dict<T> {
253
} else {
254
// The dict was changed since we did lookup. Let's try again.
255
// this is very rare to happen
256
- // (and seems only happen with very high freq gc, and about three to four time in 200000 iters)
+ // (and seems only happen with very high freq gc, and about one time in 10000 iters)
257
// but still possible
258
- // so logging a warn is acceptable in here
259
- warn!("The dict was changed since we did lookup. Let's try again.");
260
continue;
261
};
262
if entry.index == index_index {
0 commit comments