mirror of
https://github.com/matrix-construct/construct
synced 2024-11-30 02:32:43 +01:00
ircd::fs::aio: Post the chaser w/ defer for more delay.
This commit is contained in:
parent
b54d4950cc
commit
1949e6e37d
1 changed files with 4 additions and 1 deletions
|
@ -919,7 +919,10 @@ ircd::fs::aio::system::submit(request &request)
|
||||||
std::bind(&system::chase, this)
|
std::bind(&system::chase, this)
|
||||||
};
|
};
|
||||||
|
|
||||||
ircd::post(descriptor, std::move(handler));
|
ircd::defer
|
||||||
|
{
|
||||||
|
descriptor, std::move(handler)
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue