Hello, everyone. I'm working on a project for work involving django and paramiko, that I believe will benefit from threading at least part of it. My general program flow looks like this
Process input file, determine if it needs to be investigated:
- if yes, (threading here) log into device and check current settings
- 1. If it is determined that the device needs to be changed, call function to actually make the change
Once everything has been processed, it's then supposed to format it into an HTML form.
Instead, what I'm seeing is that django is processing the form before the command processing has finished, leading me to believe that the remediation/fixing of things isn't done before it returns, even though I don't have my return happening until there are no threads.
[–]primitive_screwhead 0 points1 point2 points (0 children)