Skip to content

Commit

Permalink
develop
Browse files Browse the repository at this point in the history
  • Loading branch information
RusovDmitriy committed Jun 30, 2023
1 parent ab8e817 commit 82817a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export abstract class BaseQueueDriver implements QueueDriverInterface {

public counter = 0;

public generateQueueId() {
return `${this.processUid}-${this.counter++}`;
public generateQueueId(): number {
return this.counter++;
}

public redisHash(queryKey: QueryKey): QueryKeyHash {
Expand Down

0 comments on commit 82817a0

Please sign in to comment.