Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions misc/state-models.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -503,23 +503,23 @@ batchActionDefaults:
- actionName: request-aging
titleKey: request-aging-express
title: Request aging of express requests
batchQuery: "(state = VALIDATED or state = WILL_SUPPLY or state = CONDITION_PENDING or state = NEEDS_REVIEW) and service_level = Express"
batchQuery: "side = lending and (state = VALIDATED or state = WILL_SUPPLY or state = CONDITION_PENDING or state = CONDITION_ACCEPTED) and service_level = Express"
schedule: "FREQ=MINUTELY;INTERVAL=15"
actionParams:
interval: 2h

- actionName: request-aging
titleKey: request-aging-rush
title: Request aging of rush requests
batchQuery: "(state = VALIDATED or state = WILL_SUPPLY or state = CONDITION_PENDING or state = NEEDS_REVIEW) and service_level = Rush"
batchQuery: "side = lending and (state = VALIDATED or state = WILL_SUPPLY or state = CONDITION_PENDING or state = CONDITION_ACCEPTED) and service_level = Rush"
schedule: "FREQ=HOURLY;BYMINUTE=0"
actionParams:
interval: 24h

- actionName: request-aging
titleKey: request-aging-all
title: Request aging of all requests
batchQuery: state = VALIDATED or state = WILL_SUPPLY or state = CONDITION_PENDING or state = NEEDS_REVIEW
batchQuery: "side = lending and (state = VALIDATED or state = WILL_SUPPLY or state = CONDITION_PENDING or state = CONDITION_ACCEPTED)"
schedule: "FREQ=DAILY;BYHOUR=5;BYMINUTE=0"
actionParams:
interval: 72h
Loading