mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-10-06 18:29:33 +00:00

* Refactory code / object handling * Next step * fix lint * Step 2 * Cleanup API code * cleanup addons code * cleanup data handling * Cleanup addons data handling * Cleanup docker api * clean docker api p2 * next cleanup round * cleanup start on snapshots * update format strings * fix setup * fix lint * fix lint * fix lint * fix tox * Fix wrong import of datetime module * Fix bug with attributes * fix extraction * Update core * Update logs * Expand scheduler * add support for time interval objects * next updates on tasks * Fix some things * Cleanup code / supervisor * fix lint * Fix some code styles * rename stuff * cleanup api call reload * fix lock replacment * fix lint * fix lint * fix bug * fix wrong config links * fix bugs * fix bug * Update version on startup * Fix some bugs * fix bug * Fix snapshot * Add wait boot options * fix lint * fix default config * fix snapshot * fix snapshot * load snapshots on startup * add log message at the end * Some cleanups * fix bug * add logger * add logger for supervisor update * Add more logger
21 lines
540 B
Python
21 lines
540 B
Python
"""HassIO docker utilitys."""
|
|
import logging
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
# pylint: disable=protected-access
|
|
def docker_process(method):
|
|
"""Wrap function with only run once."""
|
|
async def wrap_api(api, *args, **kwargs):
|
|
"""Return api wrapper."""
|
|
if api.lock.locked():
|
|
_LOGGER.error(
|
|
"Can't excute %s while a task is in progress", method.__name__)
|
|
return False
|
|
|
|
async with api.lock:
|
|
return await method(api, *args, **kwargs)
|
|
|
|
return wrap_api
|