diff --git a/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts b/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts index 89bcc249..b6001e4b 100644 --- a/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts +++ b/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts @@ -44,11 +44,11 @@ import { getSharedClient, closeSharedConnection } from './repository/Db'; import * as SecurityMiddleware from './security/SecurityMiddleware'; export async function deleteDocumentById(request: DeleteRequest): Promise { - 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(); } } diff --git a/README.md b/README.md index ff998292..017e7ff8 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,9 @@ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Ed-Fi-Exchange-OSS/Meadowlark/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Ed-Fi-Exchange-OSS/Meadowlark) > [!WARNING] -> The Meadowlark project has been suspended. See [SUSPENDED.md](https://github.com/Ed-Fi-Exchange-OSS/Meadowlark/blob/main/SUSPENDED.md) -> for more information. +> The Meadowlark project has been suspended and replaced with [Project Tanager](https://github.com/Ed-Fi-Alliance-OSS/Project-Tanager). +> See [SUSPENDED.md](https://github.com/Ed-Fi-Exchange-OSS/Meadowlark/blob/main/SUSPENDED.md) +> for more information on the status of Project Meadowlark.