Skip to content

Commit

Permalink
increase StartEgress timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
frostbyte73 committed Oct 18, 2023
1 parent 0966529 commit fca7ee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/egress_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func NewEgressClient(nodeID livekit.NodeID, bus psrpc.MessageBus) (EgressClient,
clientID := string(nodeID)
internalClient, err := NewEgressInternalClient(clientID, bus, middleware.WithRPCRetries(middleware.RetryOptions{
MaxAttempts: retries,
Timeout: psrpc.DefaultClientTimeout,
Timeout: time.Second * 10,
IsRecoverable: func(err error) bool {
var e psrpc.Error
if !errors.As(err, &e) {
Expand Down

0 comments on commit fca7ee8

Please sign in to comment.