Mercurial > libervia-backend
diff libervia/backend/memory/memory.py @ 4193:730f542e4ad0
core: add new `init_script_path` option:
`init_script_path` option can be used in `[DEFAULTS]` to run a script at the end of
backend initialisation. A new `init_pre_script` method is used to wait for backend to
reach this stage (designed to be used mostly by CLI frontend), then the usual `ready_get`
method is finished once the script is finished.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 13 Dec 2023 22:00:22 +0100 |
parents | 54b8cf8c8daf |
children | 9fc3d28bc3f6 |
line wrap: on
line diff
--- a/libervia/backend/memory/memory.py Tue Dec 12 12:17:15 2023 +0100 +++ b/libervia/backend/memory/memory.py Wed Dec 13 22:00:22 2023 +0100 @@ -380,10 +380,10 @@ auth_d.addCallback(do_start_session) return auth_d - if self.host.initialised.called: + if self.host.init_pre_script.called: return defer.succeed(None).addCallback(backend_initialised) else: - return self.host.initialised.addCallback(backend_initialised) + return self.host.init_pre_script.addCallback(backend_initialised) def stop_session(self, profile): """Delete a profile session