Skip to content

Commit

Permalink
added check for 2.9.0 server
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Jul 26, 2022
1 parent 11a702e commit ef42850
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/jetstream_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3429,6 +3429,9 @@ Deno.test("jetstream - duplicate message pub", async () => {

Deno.test("jetstream - republish", async () => {
const { ns, nc } = await setup(jetstreamServerConf({}, true));
if (await notCompatible(ns, nc, "2.9.0")) {
return;
}
const jsm = await nc.jetstreamManager();
const si = await jsm.streams.add({
name: nuid.next(),
Expand Down

0 comments on commit ef42850

Please sign in to comment.