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
It seems that in 2 places in NodeServices we're still using the constructor for Buffer, which was deprecated in node 10. This causes errors like we see here. We should do as the exception suggests and use one of alloc, allocUnsafe or from, as appropriate.
It seems that in 2 places in NodeServices we're still using the constructor for Buffer, which was deprecated in node 10. This causes errors like we see here. We should do as the exception suggests and use one of
alloc,allocUnsafeorfrom, as appropriate.An FYI to @PatrickKunz who files aspnet/Templating#550.