plugin: Actually wait the 20 seconds promised in the docs

We promised we'd be waiting up to 20 seconds, but were only waiting for
10. Fix that by bumping to the documented 20.
This commit is contained in:
Christian Decker
2020-02-18 17:13:17 +01:00
committed by Rusty Russell
parent 0987747ded
commit 23149c3daa
3 changed files with 26 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ plugin = Plugin()
@plugin.init()
def init(options, configuration, plugin):
plugin.log("slow_init.py initializing {}".format(configuration))
time.sleep(11)
time.sleep(21)
plugin.run()