maths / stack_util_maximapool

Pooling solution for starting up maxima processes so that moodle-qtype_stack does not need to wait.
10 stars 14 forks source link

GCL optimized maxima command line does not work #28

Open jkyprian opened 6 years ago

jkyprian commented 6 years ago

Setting the command.line to /path/to/moodledata/stack/maxima-optimised -eval '(cl-user::run)' as explained in the STACK documentation didn't work for me (always resulted in a timeout).

Putting the above command in a shell script works, however! So maybe something goes wrong during parsing of the process.conf file.

aharjula commented 6 years ago

Thank you for reporting this, I'll try to remember to check it out once I get some time to work on the Pool.

Maybe wrapping the command in "..."-quotes, would protect it from any possible config file parsing? command.line = "/path/to/moodledata/stack/maxima-optimised -eval '(cl-user::run)'"