Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
A
Aragami
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
3rdeye
Aragami
Commits
88876295
Commit
88876295
authored
May 10, 2024
by
nanahira
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
3ea6e32c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/drivers/redis.ts
src/drivers/redis.ts
+2
-1
No files found.
src/drivers/redis.ts
View file @
88876295
...
...
@@ -240,6 +240,7 @@ export class RedisDriver extends BaseDriver {
async
queueClear
(
key
:
string
):
Promise
<
void
>
{
const
_key
=
this
.
getQueueKey
(
key
);
await
this
.
pool
.
use
((
r
)
=>
r
.
redis
.
del
(
_key
));
const
backupKey
=
this
.
getQueueBackupKey
(
key
);
await
this
.
pool
.
use
((
r
)
=>
r
.
redis
.
multi
().
del
(
_key
).
del
(
backupKey
).
exec
());
}
}
nanahira
@nanahira
mentioned in commit
f948871f
·
May 10, 2024
mentioned in commit
f948871f
mentioned in commit f948871f55661d59ec0c86cbf0f257e06eeb3b4c
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment