mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-19 07:04:27 +01:00
Stops plugin if towers db cannot be accessed
This commit is contained in:
@@ -60,8 +60,9 @@ def init(options, configuration, plugin):
|
|||||||
try:
|
try:
|
||||||
plugin.wt_client = WTClient(user_sk, user_id, config_loader.build_config())
|
plugin.wt_client = WTClient(user_sk, user_id, config_loader.build_config())
|
||||||
except plyvel.IOError:
|
except plyvel.IOError:
|
||||||
|
error = "Cannot load towers db. Resource temporarily unavailable"
|
||||||
plugin.log("Cannot load towers db. Resource temporarily unavailable")
|
plugin.log("Cannot load towers db. Resource temporarily unavailable")
|
||||||
# TODO: Check how to make the plugin stop
|
raise IOError(error)
|
||||||
|
|
||||||
|
|
||||||
@plugin.method("registertower", desc="Register your public key with the tower")
|
@plugin.method("registertower", desc="Register your public key with the tower")
|
||||||
|
|||||||
Reference in New Issue
Block a user