const google.golang.org/grpc/codes.Internal

59 uses

	google.golang.org/grpc/codes (current package)
		code_string.go#L51: 	case Internal:
		codes.go#L168: 	Internal Code = 13
		codes.go#L212: 	`"INTERNAL"`:            Internal,

	google.golang.org/grpc
		picker_wrapper.go#L142: 					err = status.Errorf(codes.Internal, "received picker error with illegal status: %v", err)
		preloader.go#L44: 		return status.Errorf(codes.Internal, "grpc: unable to get rpcInfo")
		preloader.go#L49: 		return status.Errorf(codes.Internal, "grpc: rpcInfo.preloaderInfo is nil")
		preloader.go#L52: 		return status.Errorf(codes.Internal, "grpc: rpcInfo.preloaderInfo.codec is nil")
		rpc_util.go#L598: 		return nil, status.Errorf(codes.Internal, "grpc: error while marshaling: %v", err.Error())
		rpc_util.go#L615: 		return status.Errorf(codes.Internal, "grpc: error while compressing: %v", err.Error())
		rpc_util.go#L675: 			return status.New(codes.Internal, "grpc: compressed flag set with identity or empty encoding")
		rpc_util.go#L681: 		return status.Newf(codes.Internal, "grpc: received unexpected payload format %d", pf)
		rpc_util.go#L715: 			return nil, status.Errorf(codes.Internal, "grpc: failed to decompress the received message: %v", err)
		rpc_util.go#L763: 		return status.Errorf(codes.Internal, "grpc: failed to unmarshal the received message: %v", err)
		rpc_util.go#L840: 		return status.Error(codes.Internal, err.Error())
		rpc_util.go#L883: 		return status.Errorf(codes.Internal, "no codec registered for content-subtype %s", c.contentSubtype)
		server.go#L1311: 			return status.Errorf(codes.Internal, "grpc: error unmarshalling request: %v", err)
		server.go#L1914: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		server.go#L1930: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		server.go#L1950: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		stream.go#L173: 			return nil, status.Error(codes.Internal, err.Error())
		stream.go#L202: 				err = status.Errorf(codes.Internal, "config selector returned illegal status: %v", err)
		stream.go#L283: 				return nil, status.Errorf(codes.Internal, "grpc: Compressor is not installed for requested grpc-encoding %q", ct)
		stream.go#L858: 		return status.Errorf(codes.Internal, "SendMsg called after CloseSend")
		stream.go#L1220: 				return nil, status.Errorf(codes.Internal, "grpc: Compressor is not installed for requested grpc-encoding %q", ct)
		stream.go#L1337: 		return status.Errorf(codes.Internal, "SendMsg called after CloseSend")
		stream.go#L1542: 		return status.Error(codes.Internal, err.Error())
		stream.go#L1550: 		return status.Error(codes.Internal, err.Error())
		stream.go#L1688: 			err = status.Errorf(codes.Internal, io.ErrUnexpectedEOF.Error())

	google.golang.org/grpc/internal/transport
		handler_server.go#L92: 			return nil, status.Error(codes.Internal, msg)
		handler_server.go#L112: 				return nil, status.Error(codes.Internal, msg)
		http2_client.go#L635: 					err = status.Errorf(codes.Internal, "transport: received per-RPC creds error with illegal status: %v", err)
		http2_client.go#L668: 					err = status.Errorf(codes.Internal, "transport: received per-RPC creds error with illegal status: %v", err)
		http2_client.go#L672: 			return nil, status.Errorf(codes.Internal, "transport: per-RPC creds failed due to error: %v", err)
		http2_client.go#L815: 				hdrListSizeErr = status.Errorf(codes.Internal, "header list size to send violates the maximum size (%d bytes) set by server", *t.maxSendHeaderListSize)
		http2_client.go#L1148: 			t.closeStream(s, io.EOF, true, http2.ErrCodeFlowControl, status.New(codes.Internal, err.Error()), nil, false)
		http2_client.go#L1169: 		t.closeStream(s, io.EOF, false, http2.ErrCodeNo, status.New(codes.Internal, "server closed the stream without sending trailers"), nil, true)
		http2_client.go#L1384: 		st := status.New(codes.Internal, "a HEADERS frame cannot appear in the middle of a stream")
		http2_client.go#L1392: 		se := status.New(codes.Internal, "peer header list size exceeded limit")
		http2_client.go#L1432: 				se := status.New(codes.Internal, fmt.Sprintf("transport: malformed grpc-status: %v", err))
		http2_client.go#L1455: 				se := status.New(codes.Internal, fmt.Sprintf("transport: malformed http-status: %v", err))
		http2_client.go#L1482: 		var code = codes.Internal // when header does not include HTTP status, return INTERNAL
		http2_client.go#L1505: 		se := status.New(codes.Internal, headerError)
		http2_server.go#L57: 	ErrIllegalHeaderWrite = status.Error(codes.Internal, "transport: SendHeader called multiple times")
		http2_server.go#L60: 	ErrHeaderListSizeLimitViolation = status.Error(codes.Internal, "transport: trying to send header list size larger than the limit set by peer")
		http2_server.go#L417: 				headerError = status.Newf(codes.Internal, "malformed grpc-timeout: %v", err)
		http2_server.go#L432: 				headerError = status.Newf(codes.Internal, "malformed binary metadata %q in header %q: %v", hf.Value, hf.Name, err)
		http2_server.go#L454: 			status:         status.New(codes.Internal, errMsg),
		http2_server.go#L550: 			status:         status.New(codes.Internal, errMsg),
		http_util.go#L54: 		http2.ErrCodeNo:                 codes.Internal,
		http_util.go#L55: 		http2.ErrCodeProtocol:           codes.Internal,
		http_util.go#L56: 		http2.ErrCodeInternal:           codes.Internal,
		http_util.go#L58: 		http2.ErrCodeSettingsTimeout:    codes.Internal,
		http_util.go#L59: 		http2.ErrCodeStreamClosed:       codes.Internal,
		http_util.go#L60: 		http2.ErrCodeFrameSize:          codes.Internal,
		http_util.go#L63: 		http2.ErrCodeCompression:        codes.Internal,
		http_util.go#L64: 		http2.ErrCodeConnect:            codes.Internal,
		http_util.go#L67: 		http2.ErrCodeHTTP11Required:     codes.Internal,
		http_util.go#L72: 		http.StatusBadRequest: codes.Internal,
		transport.go#L822: 	return status.Errorf(codes.Internal, "Unexpected error from context packet: %v", err)