blindsidenetworks / scalelite

Scalable load balancer for BigBlueButton.
GNU Affero General Public License v3.0
470 stars 247 forks source link

fix: handle RecordNotFound with exit status 1 in rake servers #1007

Closed scouillard closed 1 year ago

scouillard commented 1 year ago

Description

Previously, the servers rake task would exit with status 0 when encountering a RecordNotFound error, which conventionally indicates a successful completion.

With this change, the task will now exit with status 1 when a RecordNotFound error occurs.

Fixes #999