Skip to content

Commit

Permalink
chore: delete some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf committed Sep 1, 2023
1 parent 114820d commit a9bf6f1
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 15 deletions.
2 changes: 0 additions & 2 deletions example/bee.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ const Bee = require('bee-queue');
const HTTP_SERVER_PORT = 4735;
const REDIS_SERVER_PORT = 6379;

// Create a Redis server. This is only for convenience

async function main() {
const queue = new Bee('name_of_my_queue', {
activateDelayedJobs: true,
Expand Down
2 changes: 0 additions & 2 deletions example/bull.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ const Bull = require('bull');
const HTTP_SERVER_PORT = 4735;
const REDIS_SERVER_PORT = 6379;

// Create a Redis server. This is only for convenience

async function main() {
const queue = new Bull('name_of_my_queue', {
redis: {
Expand Down
5 changes: 0 additions & 5 deletions example/bullmq.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
const Arena = require('../');
const {Queue, Worker, FlowProducer} = require('bullmq');
const RedisServer = require('redis-server');

// Select ports that are unlikely to be used by other services a developer might be running locally.
const HTTP_SERVER_PORT = 4735;
const REDIS_SERVER_PORT = 6379;

// Create a Redis server. This is only for convenience

async function main() {
//const server = new RedisServer(REDIS_SERVER_PORT);
//await server.open();
const queueName = 'name_of_my_queue';
const parentQueueName = 'name_of_my_parent_queue';

Expand Down
2 changes: 0 additions & 2 deletions example/bullmq_with_flows.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ const {Queue, Worker, FlowProducer} = require('bullmq');
const HTTP_SERVER_PORT = 4735;
const REDIS_SERVER_PORT = 6379;

// Create a Redis server. This is only for convenience

async function main() {
const queueName = 'name_of_my_queue';
const parentQueueName = 'name_of_my_parent_queue';
Expand Down
2 changes: 0 additions & 2 deletions example/express.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ const {Queue, Worker, FlowProducer} = require('bullmq');
const HTTP_SERVER_PORT = 4735;
const REDIS_SERVER_PORT = 6379;

// Create a Redis server. This is only for convenience

async function main() {
const app = express();
const queueName = 'name_of_my_queue';
Expand Down
2 changes: 0 additions & 2 deletions example/fastify.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ const {Queue, Worker, FlowProducer} = require('bullmq');
const HTTP_SERVER_PORT = 4735;
const REDIS_SERVER_PORT = 4736;

// Create a Redis server. This is only for convenience

async function main() {
const app = fastify();
const queueName = 'name_of_my_queue';
Expand Down

0 comments on commit a9bf6f1

Please sign in to comment.