Skip to content

Commit 3185db7

Browse files
authored
Increase dial timeout in nsmgr (#1739)
* Increase dial timeout in nsmgr Issue: networkservicemesh/deployments-k8s/issues/13484 Signed-off-by: Laszlo Kiraly <[email protected]>
1 parent 466f486 commit 3185db7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/networkservice/chains/nsmgr/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// Copyright (c) 2020-2024 Doc.ai and/or its affiliates.
44
//
5-
// Copyright (c) 2025 Nordix Foundation.
5+
// Copyright (c) 2025 OpenInfra Foundation Europe and/or its affiliates.
66
//
77
// SPDX-License-Identifier: Apache-2.0
88
//
@@ -225,7 +225,7 @@ func NewServer(ctx context.Context, tokenGenerator token.GeneratorFunc, options
225225
authorizeNSERegistryServer: registryauthorize.NewNetworkServiceEndpointRegistryServer(registryauthorize.Any()),
226226
authorizeNSERegistryClient: registryauthorize.NewNetworkServiceEndpointRegistryClient(registryauthorize.Any()),
227227
defaultExpiration: time.Minute,
228-
dialTimeout: time.Millisecond * 300,
228+
dialTimeout: time.Second * 15,
229229
name: "nsmgr-" + uuid.New().String(),
230230
forwarderServiceName: "forwarder",
231231
}

0 commit comments

Comments
 (0)