Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion iocore/cache/test/test_Alternate_S_to_L_remove_L.cc
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class CacheAltTest_S_to_L_remove_L : public CacheTestHandler
this->_wt = nullptr;
// to make sure writer successfully write the final doc done. we need to schedule
// to wait for some while. This time should be large than cache_config_mutex_retry_delay
this_ethread()->schedule_in(this->_rt, HRTIME_SECONDS(3));
this_ethread()->schedule_in(this->_rt, 4 * HRTIME_SECONDS(cache_config_mutex_retry_delay));
break;
case CACHE_EVENT_OPEN_READ:
base->do_io_read();
Expand Down
2 changes: 1 addition & 1 deletion iocore/cache/test/test_Alternate_S_to_L_remove_S.cc
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class test_Alternate_S_to_L_remove_S : public CacheTestHandler
this->_wt = nullptr;
// to make sure writer successfully write the final doc done. we need to schedule
// to wait for some while. This time should be large than cache_config_mutex_retry_delay
this_ethread()->schedule_in(this->_rt, HRTIME_SECONDS(3));
this_ethread()->schedule_in(this->_rt, 4 * HRTIME_SECONDS(cache_config_mutex_retry_delay));
break;
case CACHE_EVENT_OPEN_READ:
base->do_io_read();
Expand Down