Mercurial > libervia-backend
comparison libervia/backend/plugins/plugin_pubsub_cache.py @ 4221:2b000790b197
plugin XEP-0060: fix incorrect type hint.
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 05 Mar 2024 17:31:56 +0100 |
parents | 4b842c1fb686 |
children | ba46d6a0ff3a |
comparison
equal
deleted
inserted
replaced
4220:5a0bddfa34ac | 4221:2b000790b197 |
---|---|
403 analyse["namespace"] = uri | 403 analyse["namespace"] = uri |
404 try: | 404 try: |
405 conf = await self._p.getConfiguration(client, service, node) | 405 conf = await self._p.getConfiguration(client, service, node) |
406 except Exception as e: | 406 except Exception as e: |
407 log.warning( | 407 log.warning( |
408 f"Can't retrieve configuration for node {node!r} at service {service} " | 408 f"Can't retrieve configuration for node {node!r} at service " |
409 f"for {client.profile}: {e}" | 409 f"{service} for {client.profile}: {e}" |
410 ) | 410 ) |
411 else: | 411 else: |
412 analyse["conf"] = conf | 412 analyse["conf"] = conf |
413 | 413 |
414 for analyser in self.analysers.values(): | 414 for analyser in self.analysers.values(): |