Files
zeekay 97cdcb9b2a pubsub: bump consensus, Corona→Corona field, fix raft
- Bump github.com/luxfi/consensus v1.22.84 → v1.25.17 (go mod tidy clean).
- Migrate internal/consensus to current quasar API: QuasarHybridConsensus→Quasar,
  HybridSignature→QuasarSig, NewQuasarHybridConsensus→NewQuasar,
  VerifyHybridSignature→VerifyQuasarSig. Signature field is .Corona (no Corona).
  Route threshold<2 (single-node/dev) to NewTestQuasar, >=2 to NewQuasar (BFT),
  matching upstream's two-constructor production-vs-test split.
- Repair botched upstream merge in server/: restore corrupted files from the
  upstream merge parent with Hanzo import paths preserved. Fixes RaftNodeCheckpoint
  redeclaration, undefined gsl/standalone/numLimitableConsumers, dropped consumer
  ack-format fields, resetStartingSeq arity, filestore IntersectGSL bool callbacks
  and fetchMsgNoCopyLocked, jetstream_cluster creatingRaftGroups/wca.State.

go build ./... green; internal tests pass.
2026-06-11 13:08:07 -07:00
..
2025-11-03 11:32:02 +01:00
2026-01-09 17:45:15 +00:00
2025-06-04 10:18:55 +01:00
2026-04-08 11:01:19 +02:00
2025-08-10 22:25:30 +09:00
2025-10-09 12:48:13 +01:00
2026-02-22 00:55:09 -08:00
2026-04-30 13:02:29 +01:00
2025-08-10 22:25:30 +09:00
2025-08-10 22:25:30 +09:00
2025-06-04 10:18:55 +01:00
2026-05-11 15:21:48 -07:00
2025-02-06 11:22:06 +00:00
2025-08-08 08:21:15 -06:00
2025-06-04 10:18:55 +01:00
2025-05-21 19:11:12 -04:00
2025-06-04 10:18:55 +01:00
2025-06-04 10:18:55 +01:00
2025-06-04 10:18:55 +01:00
2025-06-04 10:18:55 +01:00
2025-06-04 10:18:55 +01:00
2025-06-04 10:18:55 +01:00

Tests

Tests that run on Travis have been split into jobs that run in their own VM in parallel. This reduces the overall running time but also is allowing recycling of a job when we get a flapper as opposed to have to recycle the whole test suite.

JetStream Tests

For JetStream tests, we need to observe a naming convention so that no tests are omitted when running on Travis.

The script runTestsOnTravis.sh will run a given job based on the definition found in ".travis.yml".

As for the naming convention:

  • All JetStream test name should start with TestJetStream
  • Cluster tests should go into jetstream_cluster_test.go and start with TestJetStreamCluster
  • Super-cluster tests should go into jetstream_super_cluster_test.go and start with TestJetStreamSuperCluster

Not following this convention means that some tests may not be executed on Travis.