Skip to content

Commit

Permalink
Increase archive buffer memory limit further (#2431)
Browse files Browse the repository at this point in the history
This PR increases the archive buffer limit further.
  • Loading branch information
Frederik Rothenberger authored Apr 16, 2024
1 parent 9390be1 commit a8e5c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internet_identity/src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ impl<M: Memory + Clone> Storage<M> {
// XX: Clean-up after incident
let archive_buffer_memory = RestrictedMemory::new(
memory_manager.get(ARCHIVE_BUFFER_MEMORY_ID),
0..(10 * BUCKET_SIZE_IN_PAGES as u64),
0..(1_000 * BUCKET_SIZE_IN_PAGES as u64),
);
let persistent_state_memory = memory_manager.get(PERSISTENT_STATE_MEMORY_ID);
Self {
Expand Down

0 comments on commit a8e5c12

Please sign in to comment.