Salesforce Queries Returning Invalid Info When Run on Windmill
Hello! I've got a very small script that uses the simple_salesforce Python library to query my company's accounts. When I run that code locally the name on an account I care about is (for the purposes of privacy) "Infinity Enterprises", but when running on Windmill it returns " null Enterprises"; the word "Infinity" gets replaced with " null " inside that string field. Do y'all have any idea what could be causing this?
6 Replies
Yes it's a windmill behavior
we will fix
Thanks a ton!
what version of windmill are you on just to be sure?
My account settings say v1.518.0
You should be able to skip post-processing by prepending script with
#skip_result_postprocessing
You can read more at this PR - https://github.com/windmill-labs/windmill/pull/5769Thanks a ton!! This fixed it 🙌