10 lines
236 B
Python
10 lines
236 B
Python
import logging
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
def run_cosmos_db_healthcheck_process(cosmos_db_id: str) -> None:
|
|
|
|
logger.info(
|
|
f"If I had a cosmos db connector, I would really try to hit this database: {cosmos_db_id}"
|
|
)
|