471
ctx context.Context,
472
request *operatorservice.ListSearchAttributesRequest,
473
>
) (_ *operatorservice.ListSearchAttributesResponse, retError error) {
operator_handler.go
474
>
defer log.CapturePanic(h.logger, &retError)
475
>
476
>
if request == nil {
477
return nil, errRequestNotSet
478
}
479
481
>
searchAttributes, err := h.saManager.GetSearchAttributes(indexName, true)
482
>
if err != nil {
483
return nil, serviceerror.NewUnavailablef(
484
"unable to read custom search attributes: %v", err,