/
Script Troubleshooting
Script Troubleshooting
If you experience a timeout during the process, there are three variables at the top of ApiClient.py that can be adjusted. The script can be edited in any text editing software, eg. notepad or notepad++.
#Shared timeout and retry parameters to tune if network is difficult
TIMEOUT=40
LONGTIMEOUT=1200
RETRIES=Retry(
total=3,
status_forcelist=[429, 500, 502, 503, 504],
method_whitelist=["HEAD", "GET", "POST"]
)
TIMEOUT is used for the timeout of all communications except the JSON import
LONG TIMEOUT only controls the timeout for longer interactions, eg. downloading configuration in the Export script or applying configuration in the Import script
RETRIES covers all the rules for retries after a timeout or http error; only the “total” should be adjusted.
, multiple selections available,
Related content
Appendix A: Troubleshooting
Appendix A: Troubleshooting
More like this
Using OPC UA - ACM Monitor
Using OPC UA - ACM Monitor
More like this
Connection Settings
Connection Settings
More like this
Appendix B: Configuration File Edits
Appendix B: Configuration File Edits
More like this
Primary and Secondary Port Switching
Primary and Secondary Port Switching
More like this
For assistance, please submit a ticket via our Support Portal, email autosol.support@autosoln.com or call 281.286.6017 to speak to a support team member.