mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
6441233d2b
This actually passes fine, but it's an interesting case to test. Fixed-by: Darosior <darosior@protonmail.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
32 lines
459 B
Python
Executable File
32 lines
459 B
Python
Executable File
#!/usr/bin/env python3
|
|
from pyln.client import Plugin
|
|
import os
|
|
import threading
|
|
import time
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
class FailThread(threading.Thread):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.start()
|
|
|
|
def run(self):
|
|
time.sleep(1)
|
|
print("Exiting!")
|
|
os._exit(1)
|
|
|
|
|
|
@plugin.init()
|
|
def init(options, configuration, plugin):
|
|
FailThread()
|
|
|
|
|
|
@plugin.method('failcmd')
|
|
def failcmd(plugin):
|
|
pass
|
|
|
|
|
|
plugin.run()
|