···153153 }
154154 return Err(ApiError::ExpiredToken(None));
155155 }
156156- let password_hash = crate::common::hash_password_async(&password).await?;
156156+ let password_hash = crate::common::hash_password_async(password).await?;
157157 let result = match state
158158 .repos
159159 .user
···345345 ));
346346 }
347347348348- let new_hash = crate::common::hash_password_async(&new_password).await?;
348348+ let new_hash = crate::common::hash_password_async(new_password).await?;
349349350350 state
351351 .repos
···180180# Can also be specified via environment variable `S3_ENDPOINT`.
181181#s3_endpoint =
182182183183+# Repository backend: `postgres` by default, or `tranquil-store`, our embedded db.
184184+# tranquil-store is EXPERIMENTAL!!!! RISK OF TOTAL DATA LOSS.
185185+#
186186+# Can also be specified via environment variable `REPO_BACKEND`.
187187+#
188188+# Default value: "postgres"
189189+#repo_backend = "postgres"
190190+191191+[tranquil_store]
192192+# Directory for tranquil-store data: the metastore, eventlog, and blockstore.
193193+#
194194+# Can also be specified via environment variable `TRANQUIL_STORE_DATA_DIR`.
195195+#
196196+# Default value: "/var/lib/tranquil-pds/store"
197197+#data_dir = "/var/lib/tranquil-pds/store"
198198+199199+# Fjall block cache size in megabytes. Defaults to 20% of system RAM when unset.
200200+#
201201+# Can also be specified via environment variable `TRANQUIL_STORE_MEMORY_BUDGET_MB`.
202202+#memory_budget_mb =
203203+204204+# Number of handler threads. Defaults to available_parallelism / 2.
205205+#
206206+# Can also be specified via environment variable `TRANQUIL_STORE_HANDLER_THREADS`.
207207+#handler_threads =
208208+183209[cache]
184210# Cache backend: `ripple` (default, built-in gossip) or `valkey`.
185211#
···482508#
483509# Default value: 3600
484510#delete_check_interval_secs = 3600
511511+512512+# Interval in seconds between block garbage collection cycles.
513513+# Reclaims orphaned ipld blocks that were stored but never committed.
514514+#
515515+# Can also be specified via environment variable `BLOCK_GC_INTERVAL_SECS`.
516516+#
517517+# Default value: 21600
518518+#block_gc_interval_secs = 21600