Skip to content

Commit

Permalink
Meaningless change to trigger build workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenfuqua authored Jul 24, 2024
1 parent 5ce342a commit 8537ad8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ import { getSharedClient, closeSharedConnection } from './repository/Db';
import * as SecurityMiddleware from './security/SecurityMiddleware';

export async function deleteDocumentById(request: DeleteRequest): Promise<DeleteResult> {
const poolClient: PoolClient = await getSharedClient();
const poolClient1: PoolClient = await getSharedClient();
try {
return Delete.deleteDocumentByDocumentUuid(request, poolClient);
return Delete.deleteDocumentByDocumentUuid(request, poolClient1);
} finally {
poolClient.release();
poolClient1.release();
}
}

Expand Down

0 comments on commit 8537ad8

Please sign in to comment.