Skip to content

fix: disable pointer compression #578

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[env]
RUSTY_V8_MIRROR = "https://github.com/supabase/rusty_v8/releases/download"
# https://supabase.com/docs/guides/functions/limits
SUPABASE_RESOURCE_LIMIT_MEM_MB = "256"
SUPABASE_RESOURCE_LIMIT_LOW_MEM_MULTIPLIER = "5"
Expand Down
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ serial_test = "3.0.0"
[patch.crates-io]
# If the PR is merged upstream, remove the line below.
deno_core = { git = "https://github.com/supabase/deno_core", branch = "293-supabase" }
v8 = { git = "https://github.com/supabase/rusty_v8", tag = "v0.97.1" }
eszip = { git = "https://github.com/supabase/eszip", branch = "fix-pub-vis-0-72-2" }

[profile.dind]
Expand Down
2 changes: 1 addition & 1 deletion crates/base/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3429,7 +3429,7 @@ async fn test_should_be_able_to_trigger_early_drop_with_mem() {
let resp = tb
.request(|b| {
b.uri("/early-drop-mem")
.header("x-memory-limit-mb", HeaderValue::from_static("20"))
.header("x-memory-limit-mb", HeaderValue::from_static("22"))
.body(Body::empty())
.context("can't make request")
})
Expand Down
Loading