Skip to content

Commit d659e7f

Browse files
committed
Update bull-board to 1.2.0
1 parent 1ee30c0 commit d659e7f

File tree

3 files changed

+497
-199
lines changed

3 files changed

+497
-199
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Docker image for [bull-board]. Allow you to monitor your bull queue without any coding!
22

3-
Supports both: bull and bullmq. bull-board version 1.0.0-alpha.4
3+
Supports both: bull and bullmq. bull-board version v1.2.0
44

55
### Quick start with Docker
66
```

index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const redisConfig = {
1717
redis: {
1818
port: REDIS_PORT,
1919
host: REDIS_HOST,
20-
...(REDIS_PASSWORD && { password: REDIS_PASSWORD }),
20+
...(REDIS_PASSWORD && {password: REDIS_PASSWORD}),
2121
tls: REDIS_USE_TLS === 'true',
2222
},
2323
};
@@ -36,7 +36,7 @@ client.KEYS(`${prefix}:*`, (err, keys) => {
3636

3737
const app = express();
3838

39-
app.use(`${basePath}`, router);
39+
app.use(basePath, router);
4040
app.listen(port, () => {
41-
console.log(`bull-board listening on port ${port} on basePath "${basePath}"!`);
41+
console.log(`bull-board listening on port ${port} on basePath ${basePath}!`);
4242
});

0 commit comments

Comments
 (0)