Skip to content

Commit

Permalink
chore(release): Release v0.2.11 - See CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun-KumarH committed Dec 22, 2021
1 parent 04ce8b1 commit df47499
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ id_rsa.pub

test/*.d.ts
test/*.js
test/*.js.map
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.2.11 (December 22nd, 2021)

- up RC dependencies and added no floating promises rule
- up ts config

## 0.2.10 (December 15th, 2021)

Expand Down
2 changes: 1 addition & 1 deletion src/schedulingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class SchedulingService implements JobService {
queueOptions.settings = advancedSettings;
}
// Add Queue Objects
let queue = new Queue(prefix, queueOptions);
let queue = new Queue.default(prefix, queueOptions);
this.queuesList.push(queue);

// Add Queue Configurations
Expand Down
2 changes: 1 addition & 1 deletion src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ export class Worker {

setQueues(queues);

this.app = express();
this.app = express.default();
this.app.use(cfg.get('bull:board:path'), bullRouter);
this.app.listen(cfg.get('bull:board:port'), () => {
logger.info(`Bull board listening on port ${cfg.get('bull:board:port')} at ${cfg.get('bull:board:path')}`);
Expand Down

0 comments on commit df47499

Please sign in to comment.