Skip to content

Commit

Permalink
Drop simulataneous jobs limit to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
tomouchuu committed Oct 21, 2023
1 parent 255e0de commit 409562d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/twelve-bananas-clap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@haishin/backend': patch
---

Change simulataneous jobs to 5 at a time
2 changes: 1 addition & 1 deletion apps/backend/src/queues/shared.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Queue from 'bee-queue'

export const simulataneousJobs = 20
export const simulataneousJobs = 5

const options = {
removeOnSuccess: true,
Expand Down
3 changes: 2 additions & 1 deletion apps/frontend/components/alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const Alert = (): React.JSX.Element => (
want.
</p>
<p className='font-medium'>
<span>Please note:</span> While I do have payment caps in place your usage
<span>Please note:</span> We currently have a cap of 5 streams at a single
time for the moment and while I do have payment caps in place your usage
does charge me so please do not use it for long streams if possible at
this current stage, so we can all use it throughout the month 🙇‍♂️
</p>
Expand Down

0 comments on commit 409562d

Please sign in to comment.