mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +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)
|
||||
};
|
||||
|
||||
ircd::post(descriptor, std::move(handler));
|
||||
ircd::defer
|
||||
{
|
||||
descriptor, std::move(handler)
|
||||
};
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue