Merge pull request #3165 from nspcc-dev/fix-win-timeout

Improve timeout of RPC tests on Windows
This commit is contained in:
Roman Khimov 2023-10-20 19:07:24 +03:00 committed by GitHub
commit c3955f87d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -58,7 +58,7 @@ ApplicationConfiguration:
MaxGasInvoke: 15
Enabled: true
Addresses:
- "localhost:0" # let the system choose port dynamically
- "127.0.0.1:0" # let the system choose port dynamically
EnableCORSWorkaround: false
Prometheus:
Enabled: false #since it's not useful for unit tests.

View file

@ -12,9 +12,9 @@ ProtocolConfiguration:
- 02c4de32252c50fa171dbe25379e4e2d55cdc12f69e382c39f59a44573ecff2f9d
ValidatorsCount: 4
SeedList:
- localhost:20334
- localhost:20335
- localhost:20336
- 127.0.0.1:20334
- 127.0.0.1:20335
- 127.0.0.1:20336
VerifyTransactions: true
P2PSigExtensions: true
NativeActivations:
@ -62,7 +62,7 @@ ApplicationConfiguration:
MaxGasInvoke: 15
Enabled: true
Addresses:
- "localhost:0" # let the system choose port dynamically
- "127.0.0.1:0" # let the system choose port dynamically
EnableCORSWorkaround: false
SessionEnabled: true
SessionExpirationTime: 2 # enough for tests as they run locally.

View file

@ -14,7 +14,7 @@ import (
func TestEncodeDecodeAddress(t *testing.T) {
var (
e, _ = net.ResolveTCPAddr("tcp", "localhost:2000")
e, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:2000")
ts = time.Now()
addr = NewAddressAndTime(e, ts, capability.Capabilities{
{
@ -45,7 +45,7 @@ func TestEncodeDecodeAddress(t *testing.T) {
func fillAddressList(al *AddressList) {
for i := 0; i < len(al.Addrs); i++ {
e, _ := net.ResolveTCPAddr("tcp", fmt.Sprintf("localhost:20%d", i))
e, _ := net.ResolveTCPAddr("tcp", fmt.Sprintf("127.0.0.1:20%d", i))
al.Addrs[i] = NewAddressAndTime(e, time.Now(), capability.Capabilities{
{
Type: capability.TCPServer,