Scheduled job caching
The following python Script is imported by a Flow which is run via a Scheduled Job. However the response of the request seems to be cached for 24hours or until the flow is run manually. And so despite not having enabled the caching feature of the Script or the Flow. Is there another setting which might be responsible for such behavior?
import requests
def main():
url = "https://vuldb.com/?export.cvejson"
response = requests.get(url)
cve_data = response.json()
return cve_data
1 Reply
no windmill doesn't cache the response