(account)
| 55 | } |
| 56 | |
| 57 | function maintenanceBusyReason(account) { |
| 58 | if (accountInflight(account) > 0) return 'account_inflight'; |
| 59 | if (accountMaintenance(account) > 0) return 'account_maintenance'; |
| 60 | if (accountLsMaintenance(account) > 0) return 'ls_maintenance'; |
| 61 | return ''; |
| 62 | } |
| 63 | |
| 64 | function shouldSkipBusyBackgroundMaintenance() { |
| 65 | return process.env.WINDSURFAPI_BACKGROUND_MAINTENANCE_SKIP_BUSY !== '0'; |
no test coverage detected