Skip to content

Commit

Permalink
Update README.md (#359)
Browse files Browse the repository at this point in the history
* Update README.md

* Meaningless change to trigger build workflows
  • Loading branch information
stephenfuqua authored Jul 24, 2024
1 parent 163e475 commit f9b7a5a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
<img alt="Meadowlark photo (c) Joel Chamberlain"
src="https://raw.githubusercontent.com/Ed-Fi-Exchange-OSS/Meadowlark/main/images/cropped-meadowlark-cc-by-nc-4.0-naturenerd_joel.png"
Expand Down

0 comments on commit f9b7a5a

Please sign in to comment.