From 957fb04f92e9643a8c44e487e7099c52fb4c73d2 Mon Sep 17 00:00:00 2001
From: a <a@tuxpa.in>
Date: Thu, 5 Oct 2023 09:07:47 -0500
Subject: [PATCH] more commentsZ
---
pkg/server/server.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/server/server.go b/pkg/server/server.go
index 123651c..9e63162 100644
--- a/pkg/server/server.go
+++ b/pkg/server/server.go
@@ -256,7 +256,7 @@ func (c *callResponder) send(ctx context.Context, env *callEnv) (err error) {
for _, v := range env.responses {
msg := v.pkt
// if we are a batch AND we are supposed to skip, then continue
- // this means that for a non-batch notification, we do not skip!
+ // this means that for a non-batch notification, we do not skip! this is to ensure we get always a "response" for http-like endpoints
if env.batch && v.skip {
continue
}
--
GitLab