dse-assignment/components/i_feed/traffic_light.py
2021-04-12 21:34:11 +02:00

7 lines
133 B
Python

from circuitbreaker import circuit
@circuit(failure_threshold=10, expected_exception=ConnectionError)
def external_call():
...