File tree 2 files changed +5
-0
lines changed 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Changelog for NeoFS Node
34
34
- Race between basic income processing stages leading to distribution failures in some cases (#3338 )
35
35
- Wallet password logged by IR in some error cases (#3340 )
36
36
- Embedded CN not stopped properly in some error cases potentially leading to inconsistent blockchain DB state (#3340 )
37
+ - SN gRPC dialer switched from problematic ` dns ` address resolver to the ` passthrough ` one (#3334 )
37
38
38
39
### Changed
39
40
- IR calls ` ObjectService.SearchV2 ` to select SG objects now (#3144 )
Original file line number Diff line number Diff line change @@ -14,9 +14,13 @@ import (
14
14
"google.golang.org/grpc"
15
15
"google.golang.org/grpc/credentials"
16
16
"google.golang.org/grpc/keepalive"
17
+ "google.golang.org/grpc/resolver"
17
18
)
18
19
19
20
func initGRPC (c * cfg ) {
21
+ // although docs state that 'passthrough' is set by default, it should be set explicitly for activation
22
+ resolver .SetDefaultScheme ("passthrough" )
23
+
20
24
if c .cfgMorph .client == nil {
21
25
initMorphComponents (c )
22
26
}
You can’t perform that action at this time.
0 commit comments