Skip to content

Commit

Permalink
Merge branch 'codefori:main' into feature/object_locks
Browse files Browse the repository at this point in the history
  • Loading branch information
janfh authored Jan 15, 2025
2 parents 219fd31 + e3d4614 commit f9baeb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connection/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class SQLJobManager {
const config = instance.getConfig();

const newJob = predefinedJob || (new OldSQLJob({
libraries: [config.currentLibrary, ...config.libraryList],
libraries: [config.currentLibrary, ...config.libraryList.filter((item) => item != config.currentLibrary)],
naming: `system`,
"full open": false,
"transaction isolation": "none",
Expand Down Expand Up @@ -161,4 +161,4 @@ export class SQLJobManager {
static getSelfDefault(): SelfValue {
return Configuration.get<SelfValue>(`jobSelfDefault`) || `*NONE`;
}
}
}

0 comments on commit f9baeb3

Please sign in to comment.