Is there a way to signal to the Prisma Rust query ...
# orm-help
j
Is there a way to signal to the Prisma Rust query engine to clear all of the connections, but not close? The only way we can manage the connections is to
$disconnect
, but reconnecting takes a long time in tests (and takes longer as we go along for some reason).
n
It’s not possible at the moment and as you mentioned
$disconnect
would cancel all connections, do you mind creating a Feature Request for it and explaining this use case?