1.) Okay, not totally following the second part, but when I run "qbadmin s --config | grep language" in a shell, I get the following:
12: supervisor_language_flags=63
I didn't see 63 listed in the directory you gave? Mine didn't print out a list of langauges within parenthesis, like your example?
I'm thinking it isn't enabled. In that case, would you happen to know what commands I could instruct our engineering guys to run to enable these, or a page to point them to?
2.) Correct, I'm not trying to alter the JobID's, but parameters within that jobID. I'm trying something like this, to get it to send an email upon completion:
qb.modify( jobid=<jobIDNum>, modifyParamDict={ 'callbacks':[{'language':'python', 'triggers':'done-job-self', 'code':str('print "\nhi!\n"')}]} )
Or failing that, something like this:
qb.modify jobid=<jobIDNum>, modifyParamDict={'mailaddress':<mailAddress>, 'callbacks':[{'triggers':'complete-job-self', 'language':'mail'}]} )
But it sounds like you're saying both of these won't work, since I can only modify one aspect of the modifyParamDict then? Gotcha. Seems like I'll need to have one of our Engineers get the languages straightened out before I can try that though.
Thanks!