From f9b7a5a59d85fa531135bb3edbda7d4bb15d5613 Mon Sep 17 00:00:00 2001 From: Stephen Fuqua Date: Wed, 24 Jul 2024 15:03:59 -0500 Subject: [PATCH] Update README.md (#359) * Update README.md * Meaningless change to trigger build workflows --- .../meadowlark-postgresql-backend/src/BackendFacade.ts | 6 +++--- README.md | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) 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.