0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-12 15:08:55 +02:00

ircd::fs::aio: Post the chaser w/ defer for more delay.

This commit is contained in:
Jason Volk 2020-12-13 08:32:17 -08:00
parent b54d4950cc
commit 1949e6e37d

View file

@ -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;