mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
10 lines
382 B
Go
10 lines
382 B
Go
package chatd
|
|
|
|
// WaitUntilIdleForTest waits for background chat work tracked by the server to
|
|
// finish without shutting the server down. Tests use this to assert final
|
|
// database state only after asynchronous chat processing has completed.
|
|
// Close waits for the same tracked work, but also stops the server.
|
|
func WaitUntilIdleForTest(server *Server) {
|
|
server.drainInflight()
|
|
}
|