added unlinked controller; change create forwarded to createOrUpdate; added global proxy mutex

This commit is contained in:
2026-04-09 12:50:26 +02:00
parent 79a991f001
commit 8b2c1d0390
8 changed files with 563 additions and 159 deletions
+2 -3
View File
@@ -109,13 +109,12 @@ func (svc *Service) logInterceptor(ctx context.Context, req any, info *grpc.Unar
if err == nil {
svc.log.Debugf("Request: %s", string(reqData))
}
res, err := handler(ctx, req)
res, handErr := handler(ctx, req)
resData, err := json.Marshal(res)
if err == nil {
svc.log.Debugf("Response: %s", string(resData))
}
return res, err
return res, handErr
}
func (svc *Service) Stop() {