Skip to content

Commit

Permalink
feat: Enable endpoint-pooling by default for agent endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
jonstacks committed Jan 28, 2025
1 parent c328a9d commit 6d7e7a1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/tunneldriver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,8 @@ func (td *TunnelDriver) CreateAgentEndpoint(ctx context.Context, name string, sp
config.WithForwardsTo(spec.Upstream.URL),
config.WithBindings(spec.Bindings...),
config.WithMetadata(spec.Metadata),
// TODO(stacks): this may end up being configurable on a per-endpoint basis in the future
config.WithPoolingEnabled(true),

Check warning on line 434 in pkg/tunneldriver/driver.go

View check run for this annotation

Codecov / codecov/patch

pkg/tunneldriver/driver.go#L433-L434

Added lines #L433 - L434 were not covered by tests
config.WithDescription(spec.Description),
}

Expand Down

0 comments on commit 6d7e7a1

Please sign in to comment.