microsoft / vscode-test-web

Node module to help testing VS Code web extensions.
MIT License
60 stars 23 forks source link

uncaughtException AggregateError [ETIMEDOUT] #139

Closed RedCMD closed 2 months ago

RedCMD commented 2 months ago

Every so often vscode-test-web will stop working for a few day(s) then suddenly just start working with no apparent change

@vscode/test-web: 0.0.58
Downloading VS Code StableuncaughtException AggregateError [ETIMEDOUT]: 
    at internalConnectMultiple (node:net:1116:18)
    at afterConnectMultiple (node:net:1683:7) {
  code: 'ETIMEDOUT',
  [errors]: [
    Error: connect ETIMEDOUT 151.101.86.172:443
        at createConnectionError (node:net:1646:14)
        at Timeout.internalConnectMultipleTimeout (node:net:1705:38)
        at listOnTimeout (node:internal/timers:575:11)
        at process.processTimers (node:internal/timers:514:7) {
      errno: -4039,
      code: 'ETIMEDOUT',
      syscall: 'connect',
      address: '151.101.86.172',
      port: 443
    },
    Error: connect ENETUNREACH 2a04:4e42:14::684:443
        at createConnectionError (node:net:1646:14)
        at afterConnectMultiple (node:net:1676:16) {
      errno: -4062,
      code: 'ENETUNREACH',
      syscall: 'connect',
      address: '2a04:4e42:14::684',
      port: 443
    }
  ]
}
aeschli commented 2 months ago

Maybe this is related: https://github.com/nodejs/undici/issues/2777 ?

Closing as this sounds like a network setup issue.