From a03455a080c236e54e5627a5023c7d8612452191 Mon Sep 17 00:00:00 2001 From: Leo Balter Date: Mon, 23 Sep 2019 13:49:32 -0300 Subject: [PATCH] Uncomment lines (#2360) Ref #2353 This uncomment lines meant to be in the code for the graceful end of the async GC executions. --- harness/async-gc.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/harness/async-gc.js b/harness/async-gc.js index dea7a2e8ce..90510dc43b 100644 --- a/harness/async-gc.js +++ b/harness/async-gc.js @@ -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); }