[PR #1271] [CLOSED] server: DB Connection Pool configuration (merged) #1222

Closed
opened 2026-02-27 09:11:23 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/lldap/lldap/pull/1271
Author: @thielj
Created: 9/4/2025
Status: Closed

Base: mainHead: main


📝 Commits (9)

📊 Changes

15 files changed (+843 additions, -163 deletions)

View changed files

📝 crates/domain-handlers/src/handler.rs (+1 -0)
📝 crates/sql-backend-handler/Cargo.toml (+1 -0)
📝 crates/sql-backend-handler/src/lib.rs (+1 -0)
crates/sql-backend-handler/src/password_service.rs (+428 -0)
📝 crates/sql-backend-handler/src/sql_backend_handler.rs (+13 -5)
📝 crates/sql-backend-handler/src/sql_group_backend_handler.rs (+16 -1)
📝 crates/sql-backend-handler/src/sql_opaque_handler.rs (+43 -63)
📝 crates/sql-backend-handler/src/sql_user_backend_handler.rs (+37 -5)
📝 crates/test-utils/src/lib.rs (+3 -1)
📝 lldap_config.docker_template.toml (+18 -13)
📝 server/src/cli.rs (+35 -0)
📝 server/src/configuration.rs (+65 -4)
📝 server/src/main.rs (+92 -28)
📝 server/src/tcp_server.rs (+57 -43)
test_password_service.rs (+33 -0)

📄 Description

See https://github.com/lldap/lldap/pull/1248


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/lldap/lldap/pull/1271 **Author:** [@thielj](https://github.com/thielj) **Created:** 9/4/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (9) - [`3c0598d`](https://github.com/lldap/lldap/commit/3c0598d6dcb722da70942348f3ce9354522bd416) DB Connection Pool configuration - [`9ffaab4`](https://github.com/lldap/lldap/commit/9ffaab4e4233ec19f161c4c1902f58d61bcf4f6e) Merge branch 'main' of https://github.com/thielj/lldap - [`51b5feb`](https://github.com/lldap/lldap/commit/51b5feb4a07ae214610114391e1188d1fa366a5e) feat: add PasswordService for async cryptographic operations on background thread - [`d673b9d`](https://github.com/lldap/lldap/commit/d673b9d047cf6eea5b3d1e9e03b158236fbdf0aa) fix cargo fmt issues ; add server shutdown log statement - [`1a09a5d`](https://github.com/lldap/lldap/commit/1a09a5d6aad6a588f6500b990f6ab95a7fbb7f00) Merge branch 'lldap:main' into main - [`7edbaac`](https://github.com/lldap/lldap/commit/7edbaac5505e55e04cb09c4bebbf871f24f750e3) feat: add readonly mode support to SqlBackendHandler and related components; - [`7de2b24`](https://github.com/lldap/lldap/commit/7de2b246eb6530e6db34d9b886de998d951b311a) Merge branch 'main' of https://github.com/thielj/lldap - [`ef09c91`](https://github.com/lldap/lldap/commit/ef09c911af80070e6700078cff5b7a086d5d9317) feat: readonly mode support (cont.) - [`951c8f0`](https://github.com/lldap/lldap/commit/951c8f0a9ee4ff74db138475c3315333c1f67442) feat: DB_OPTIONS (cont.) ### 📊 Changes **15 files changed** (+843 additions, -163 deletions) <details> <summary>View changed files</summary> 📝 `crates/domain-handlers/src/handler.rs` (+1 -0) 📝 `crates/sql-backend-handler/Cargo.toml` (+1 -0) 📝 `crates/sql-backend-handler/src/lib.rs` (+1 -0) ➕ `crates/sql-backend-handler/src/password_service.rs` (+428 -0) 📝 `crates/sql-backend-handler/src/sql_backend_handler.rs` (+13 -5) 📝 `crates/sql-backend-handler/src/sql_group_backend_handler.rs` (+16 -1) 📝 `crates/sql-backend-handler/src/sql_opaque_handler.rs` (+43 -63) 📝 `crates/sql-backend-handler/src/sql_user_backend_handler.rs` (+37 -5) 📝 `crates/test-utils/src/lib.rs` (+3 -1) 📝 `lldap_config.docker_template.toml` (+18 -13) 📝 `server/src/cli.rs` (+35 -0) 📝 `server/src/configuration.rs` (+65 -4) 📝 `server/src/main.rs` (+92 -28) 📝 `server/src/tcp_server.rs` (+57 -43) ➕ `test_password_service.rs` (+33 -0) </details> ### 📄 Description See https://github.com/lldap/lldap/pull/1248 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 09:11:23 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/lldap-lldap#1222
No description provided.