Skip to content

feat: Create broker for negotiating connections #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 11, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix gRPC language with dRPC
Co-authored-by: Bryan <bryan@coder.com>
  • Loading branch information
kylecarbs and bryphe-coder authored Jan 11, 2022
commit 2e511baf6166bfdb307390d9ce2fb8cbce0e1090
2 changes: 1 addition & 1 deletion peerbroker/listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/coder/coder/peerbroker/proto"
)

// Listen consumes the transport as the server-side of the PeerBroker gRPC service.
// Listen consumes the transport as the server-side of the PeerBroker dRPC service.
// The Accept function must be serviced, or new connections will hang.
func Listen(transport drpc.Transport, opts *peer.ConnOpts) (*Listener, error) {
ctx, cancelFunc := context.WithCancel(context.Background())
Expand Down