Although my pyya-agent is being invoked as a cron service, only code within .use(self,
workitem) is being executed. I.e. code outside that function is
never invoked when called. A example illustrating this:
def use (self, workitem):
print '+++ Dequeue_pyya_agent.use()'
print 'second line in use()'
dummyFunc('testing function call')
def dummyFunc(some_string):
print some_string
The first two lines are printed (to the log/console), but not the third.
It may be that I'm doing something wrong in Python.
Thanks for any ideas.
Tony Bigbee
- [OpenWFE-users] pyya-agent code not executing outside of .u... Anthony Bigbee
- Re: [OpenWFE-users] pyya-agent code not executing outs... John Mettraux
- Re: [OpenWFE-users] pyya-agent code not executing ... Anthony Bigbee
