get host addr/port from database when requesting credentials

This commit is contained in:
2023-05-06 16:56:45 -07:00
parent 616600687d
commit 94400ba7d5
4 changed files with 55 additions and 39 deletions

View File

@@ -198,6 +198,8 @@ pub enum RequestError {
InvalidJson,
#[error("Error reading/writing stream: {0}")]
StreamIOError(#[from] std::io::Error),
#[error("Error loading configuration data: {0}")]
Setup(#[from] SetupError),
}