-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
Sadly, my developer machine fails on creating the self-signed certificate due to this timeout value:
react-native-windows/packages/@react-native-windows/cli/src/generator-windows/index.ts
Line 38 in 9bc6c55
| const timeout = 10000; // 10 seconds; |
Hacking in some code to throw up the underlying error revealed it:
Also, it took quite awhile to diagnose (thanks @asklar !) because the underlying error is swallowed up here:
react-native-windows/packages/@react-native-windows/cli/src/generator-windows/index.ts
Line 62 in 0062570
| console.log( |
Yes, I'd love a faster machine (you can tell my boss...), but in the meantime, I'd suggest that we don't need a timeout here, or it needs to be configurable. Additionally, it would be great to not swallow up the errors.

