gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] 01/02: actually only shut down once


From: gnunet
Subject: [taler-wallet-core] 01/02: actually only shut down once
Date: Fri, 07 Aug 2020 08:43:41 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

commit a5d8d5349d4761873df3c5b36143dd04417d6f69
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Fri Aug 7 12:09:32 2020 +0530

    actually only shut down once
---
 packages/taler-integrationtests/src/harness.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/packages/taler-integrationtests/src/harness.ts 
b/packages/taler-integrationtests/src/harness.ts
index 9e1faf5c..20b8a994 100644
--- a/packages/taler-integrationtests/src/harness.ts
+++ b/packages/taler-integrationtests/src/harness.ts
@@ -220,7 +220,7 @@ export class GlobalTestState {
   testDir: string;
   procs: ProcessWrapper[];
   servers: http.Server[];
-  inShutdown: false;
+  inShutdown: boolean = false;
   constructor(params: GlobalTestParams) {
     this.testDir = params.testDir;
     this.procs = [];
@@ -312,6 +312,7 @@ export class GlobalTestState {
     if (this.inShutdown) {
       return;
     }
+    this.inShutdown = true;
     console.log("shutting down");
     for (const s of this.servers) {
       s.close();

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]