forked from TrueCloudLab/frostfs-node
Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
21 lines
520 B
Go
21 lines
520 B
Go
package response
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/util"
|
|
)
|
|
|
|
// HandleUnaryRequest call passes request to handler, sets response meta header values and returns it.
|
|
func (s *Service) HandleUnaryRequest(ctx context.Context, req any, handler util.UnaryHandler) (util.ResponseMessage, error) {
|
|
// process request
|
|
resp, err := handler(ctx, req)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not handle request: %w", err)
|
|
}
|
|
|
|
setMeta(resp, s.cfg)
|
|
|
|
return resp, nil
|
|
}
|