feat(batch28): implement jetstream api dispatch and account request core

This commit is contained in:
Joseph Doherty
2026-02-28 22:24:10 -05:00
parent 2c4bebfb8d
commit bf115b116e
7 changed files with 778 additions and 5 deletions

View File

@@ -268,11 +268,7 @@ public sealed partial class NatsServer
internal void SetupJetStreamExports()
{
var sys = SystemAccount();
if (sys == null)
return;
var err = sys.AddServiceExport(JsApiSubjects.JsAllApi, null);
var err = SetJetStreamExportSubs();
if (err != null)
Warnf("Error setting up jetstream service exports: {0}", err.Message);
}