Skip to content

Commit

Permalink
change time interval of shrink
Browse files Browse the repository at this point in the history
  • Loading branch information
seemingwang committed Nov 1, 2021
1 parent d248672 commit ccfd3e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/fluid/distributed/table/common_graph_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class ScaledLRU {
while (true) {
{
std::unique_lock<std::mutex> lock(mutex_);
cv_.wait_for(lock, std::chrono::milliseconds(1));
cv_.wait_for(lock, std::chrono::milliseconds(3000));
if (stop) {
return;
}
Expand Down

1 comment on commit ccfd3e8

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

Please sign in to comment.