Skip to content

Commit

Permalink
Merge pull request #828 from thedadams/complete-sdk-server-run
Browse files Browse the repository at this point in the history
fix: complete the SDK server options on run
  • Loading branch information
ibuildthecloud authored Aug 28, 2024
2 parents f2bfa9f + e83fe65 commit 252e47f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/sdkserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ type Options struct {

// Run will start the server and block until the server is shut down.
func Run(ctx context.Context, opts Options) error {
opts = complete(opts)

listener, err := newListener(opts)
if err != nil {
return err
Expand Down

0 comments on commit 252e47f

Please sign in to comment.