def checkSpotTermination()

in workshops/ecs-spot-capacity-providers/webapp/app.py [0:0]


def checkSpotTermination():
    URL = "http://169.254.169.254/latest/meta-data/spot/termination-time"
    response = requests.get(URL)
    return (response.status_code == 200)