Closed aefji closed 2 years ago
When sending jobs from a lambda API, is it recommended/required to stop() before ending of the function?
stop()
If you're using the minimal config of noSupervisor=true and noScheduling=true, and don't use work(), then calling stop() doesn't really have anything to stop. It would be optional in that case
noSupervisor=true
noScheduling=true
work()
When sending jobs from a lambda API, is it recommended/required to
stop()
before ending of the function?