mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-09-02 03:03:57 +00:00
Fixing cargo test failures due to backported pg_dump
security issue. (#5932)
* Trying to fix cargo test ci 1. * 2 * 3 * 3 * Print output * Try empty restrict key * Try empty * Updating from main.
This commit is contained in:
parent
b2eb9759a6
commit
66a8095d4e
1 changed files with 4 additions and 0 deletions
|
@ -36,6 +36,10 @@ pub(crate) fn get_dump() -> String {
|
|||
"--no-table-access-method",
|
||||
"--no-tablespaces",
|
||||
"--no-large-objects",
|
||||
// Use a fake restrict key, rather than an auto-generated one.
|
||||
// See https://github.com/sqlc-dev/sqlc/issues/4065
|
||||
"--restrict-key",
|
||||
"empty",
|
||||
])
|
||||
.stderr(Stdio::inherit())
|
||||
.output()
|
||||
|
|
Loading…
Reference in a new issue