Skip to content

Instantly share code, notes, and snippets.

@igniteflow
Created November 16, 2012 15:41
Show Gist options
  • Save igniteflow/4088322 to your computer and use it in GitHub Desktop.
Save igniteflow/4088322 to your computer and use it in GitHub Desktop.
Clear the SUDS WSDL cache
"""
SUDS caches WSDL files by default. This command will clear the cache.
"""
from openkm import client
client = client.Client(url)
client.options.cache.clear()
@martync
Copy link

martync commented Dec 19, 2017

After I've spent 2h on an error on suds client (Type not found: xxx), clearing the cache made everything works.

Really usefull +1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment