Backburner Test

Can someone please try the following script on a local backburner instance and tell me if a job is submitted? If yes, could you please try it multiple times in a row and also with the monitor connected to the manager?

Dont forget you need to have Backburner manager.exe started (server.exe is only needed for the actual rendering, so dont start it).

man = netRender.getManager()
manager.connect #manual "localhost"
 
print (man.connected)
 
man.queryControl #wait
man.getControl()
man.lock true
 
job = man.newJob()
job.name = (random 0 999999) as String
job.submit()
 
man.lock false
man.disconnect()