You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
46: internal.go: make Service interface optional to implement r=48d90782 a=48d90782
Co-authored-by: Valery Piashchynski <piashchynski_valery@hotmail.com>
e.logger.Error("nil result returned from the vertex", zap.String("vertex id", n.Vertex.ID), zap.String("tip:", "serve function should return initialized channel with errors"))
576
-
returnfmt.Errorf("nil result returned from the vertex, vertex id: %s", n.Vertex.ID)
577
-
}
574
+
res:=e.callServeFn(n.Vertex, in)
575
+
ifres!=nil {
576
+
e.results.Store(res.vertexID, res)
577
+
} else {
578
+
e.logger.Error("nil result returned from the vertex", zap.String("vertex id", n.Vertex.ID), zap.String("tip:", "serve function should return initialized channel with errors"))
579
+
returnfmt.Errorf("nil result returned from the vertex, vertex id: %s", n.Vertex.ID)
0 commit comments