Regtest: Don't kill old instances

This commit is contained in:
Alva Swanson 2023-09-12 15:39:44 +02:00
parent f872d41d30
commit 3930966f3e
No known key found for this signature in database
GPG Key ID: 004760E77F753090
2 changed files with 0 additions and 12 deletions

View File

@ -32,12 +32,6 @@ abstract class StartBisqTask : DefaultTask() {
@TaskAction
fun run() {
ProcessKiller(pidFile.asFile.get())
.kill()
// Wait until process stopped
Thread.sleep(5000)
val processBuilder = ProcessBuilder(
javaExecutable.asFile.get().absolutePath,

View File

@ -28,12 +28,6 @@ abstract class StartBitcoindTask : DefaultTask() {
@TaskAction
fun run() {
ProcessKiller(pidFile.asFile.get())
.kill()
// Wait until process stopped
Thread.sleep(5000)
val processBuilder = ProcessBuilder(
"bitcoind",
"-datadir=${dataDirectory.asFile.get().absolutePath}",