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
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Screenshot
What did you do?
Created a whole file example in a project here that is not runnable (doesn't have //output comment).
Code
// Copyright 2021-2023 Buf Technologies, Inc.//// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// http://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.package connect_test
import (
"context""net/http""github.com/bufbuild/connect-go"
pingv1 "github.com/bufbuild/connect-go/internal/gen/connect/ping/v1""github.com/bufbuild/connect-go/internal/gen/connect/ping/v1/pingv1connect"
)
// ExamplePingServer implements some trivial business logic. The Protobuf// definition for this API is in proto/connect/ping/v1/ping.proto.typeExamplePingServerstruct {
pingv1connect.UnimplementedPingServiceHandler
}
// Ping implements pingv1connect.PingServiceHandler.func (*ExamplePingServer) Ping(
_ context.Context,
request*connect.Request[pingv1.PingRequest],
) (*connect.Response[pingv1.PingResponse], error) {
returnconnect.NewResponse(
&pingv1.PingResponse{
Number: request.Msg.Number,
Text: request.Msg.Text,
},
), nil
}
funcExample_handler() {
// protoc-gen-connect-go generates constructors that return plain net/http// Handlers, so they're compatible with most Go HTTP routers and middleware// (for example, net/http's StripPrefix). Each handler automatically supports// the Connect, gRPC, and gRPC-Web protocols.mux:=http.NewServeMux()
mux.Handle(
pingv1connect.NewPingServiceHandler(
&ExamplePingServer{}, // our business logic
),
)
// You can serve gRPC's health and server reflection APIs using// github.com/bufbuild/connect-grpchealth-go and// github.com/bufbuild/connect-grpcreflect-go._=http.ListenAndServeTLS(
"localhost:8080",
"internal/testdata/server.crt",
"internal/testdata/server.key",
mux,
)
// To serve HTTP/2 requests without TLS (as many gRPC clients expect), import// golang.org/x/net/http2/h2c and golang.org/x/net/http2 and change to:// _ = http.ListenAndServe(// "localhost:8080",// h2c.NewHandler(mux, &http2.Server{}),// )
}
What did you expect to see?
Expected for the whole file to be shown without a run button shown.
What did you see instead?
A run button, even though the example is non runnable (long running server process)
Because this example is non runnable it fails with the following error because an internal package is used. Even if it would compile it would probably fail because it's attempting to start a long running service.
go: downloading github.com/bufbuild/connect-go v1.4.1
go: downloading google.golang.org/protobuf v1.28.1
package play.ground
prog.go:8:2: use of internal package github.com/bufbuild/connect-go/internal/gen/connect/ping/v1 not allowed
package play.ground
prog.go:9:2: use of internal package github.com/bufbuild/connect-go/internal/gen/connect/ping/v1/pingv1connect not allowed
The text was updated successfully, but these errors were encountered:
What is the URL of the page with the issue?
https://pkg.go.dev/github.com/bufbuild/connect-go#example-package-Handler
Specifically the
Example (Handler)
sectionWhat is your user agent?
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Screenshot
What did you do?
Created a whole file example in a project here that is not runnable (doesn't have
//output
comment).Code
What did you expect to see?
Expected for the whole file to be shown without a
run
button shown.What did you see instead?
A run button, even though the example is non runnable (long running server process)
Because this example is non runnable it fails with the following error because an internal package is used. Even if it would compile it would probably fail because it's attempting to start a long running service.
The text was updated successfully, but these errors were encountered: