Uncomment lines (#2360)

Ref #2353

This uncomment lines meant to be in the code for the graceful end of the async GC executions.
This commit is contained in:
Leo Balter 2019-09-23 13:49:32 -03:00 committed by GitHub
parent 3bfb341203
commit a03455a080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -47,10 +47,10 @@ async function asyncGCDeref() {
}
function resolveAsyncGC(err) {
// if (err === asyncGC.notCollected) {
// // Do not fail as GC can't provide necessary resources.
// $DONE();
// }
if (err === asyncGC.notCollected) {
// Do not fail as GC can't provide necessary resources.
$DONE();
}
$DONE(err);
}