Skip to content

Commit 7970cd8

Browse files
authored
Merge pull request ceph#54810 from mkogan1/rgw-wip-t63445-valg-supp-rb
rgw: d3n: fix valgrind reported leak related to libaio worker threads Reviewed-by: Casey Bodley <[email protected]>
2 parents b4102be + dd258d8 commit 7970cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rgw/driver/rados/rgw_d3n_datacache.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ void D3nDataCache::init(CephContext *_cct) {
104104
struct aioinit ainit{0};
105105
ainit.aio_threads = cct->_conf.get_val<int64_t>("rgw_d3n_libaio_aio_threads");
106106
ainit.aio_num = cct->_conf.get_val<int64_t>("rgw_d3n_libaio_aio_num");
107-
ainit.aio_idle_time = 10;
107+
ainit.aio_idle_time = 5;
108108
aio_init(&ainit);
109109
#endif
110110
}

0 commit comments

Comments
 (0)