Clear spawnRunners in SandboxModule.

Otherwise the number of spawnRunners would increase by 2 in every Bazel
invocation.

RELNOTES: None
PiperOrigin-RevId: 304132136
diff --git a/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java b/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java
index 8c8c0df..5de2c6d 100644
--- a/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java
+++ b/src/main/java/com/google/devtools/build/lib/sandbox/SandboxModule.java
@@ -528,6 +528,8 @@
       sandboxBase = null;
     }
 
+    spawnRunners.clear();
+
     env.getEventBus().unregister(this);
     env = null;
   }