Skip to content

Commit

Permalink
Wrap internal job ID into brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
worksofliam committed Dec 5, 2023
1 parent a36482f commit 28201cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class SQLJobManager {
this.totalJobs += 1;

this.jobs.push({
name: `${name || 'New job'} ${this.totalJobs}`,
name: `${name || 'New job'} (${this.totalJobs})`,
job: newJob
});

Expand Down

0 comments on commit 28201cf

Please sign in to comment.