Skip to content

Commit 3fc2e2c

Browse files
committed
Force close open connections to the ephemeral test branch when dropping
There shouldn't be any since we've closed the app first, but it was still reporting some. I don't mind forcing it for this use case.
1 parent cd06890 commit 3fc2e2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utility/edgedb-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const ephemeralEdgeDB = async () => {
1818
await db.execute(`create schema branch ${branch} from ${main}`);
1919

2020
const cleanup = async () => {
21-
await db.execute(`drop branch ${branch}`);
21+
await db.execute(`drop branch ${branch} force`);
2222
await db.close();
2323
};
2424

0 commit comments

Comments
 (0)