Qsub -V did not swamp back ground process

Hi Team,

by default ,qsub will spawn a background process to speed up the qsub process.

however, when qsub submitted with -V, the background is not spawned.
could you let me know if how to fix it ?

user@hostA:/tmp/qsub$ qsub -q admin – /bin/sleep 11
4083.hostA
user@hostA:/tmp/qsub$ ps -ef|grep qsub
user 3662 1 0 18:28 ? 00:00:00 qsub -q admin – /bin/sleep 11

with -V, there is no backgroud qsub process.

user@hostA:/tmp/qsub$ qsub -q admin -V – /bin/sleep 11
4084.hostA
user@hostA:/tmp/qsub$ ps -ef|grep qsub
user 3860 21008 0 18:29 pts/2 00:00:00 grep qsub

Thanks.

@squallabc What you are seeing is expected behavior of qsub, qsub doesn’t spawn daemon qsub if you pass -V.
See https://github.com/PBSPro/pbspro/pull/781 for more details.