You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ditch Arc::try_new() fallible alloc in Engine::new()
If `Arc::new()` causes an OOM error, there is nothing we can do about it
except abort the program initialization... which plain `Arc::new()` does
anyway, without the boilerplate.
We should only use fallible allocation in areas where we can reasonably
recover, e.g. dynamically while spawing/modifying containers.
0 commit comments