Tim

Results 31 issues of Tim

Hi, I connected my MDDF-20DEN7-WF device with the INVmate II app. Then I connected the account with the HACS HA integration. After a restart I receive following logs: ```bash Logger:...

Hey, I've following tests which worked before the updates from before 4 weeks: ```rs #[parameterized(endpoint = { (axum::http::Method::GET, "/ws/invoices"), (axum::http::Method::GET,"/ws/positions"), (axum::http::Method::GET,"/api/positions"),(axum::http::Method::POST,"/api/positions"),(axum::http::Method::DELETE,"/api/positions"),(axum::http::Method::PUT,"/api/positions/any-id"), (axum::http::Method::POST,"/api/products"), (axum::http::Method::GET,"/api/products"), (axum::http::Method::GET,"/api/customers"), (axum::http::Method::POST,"/api/suppliers"),(axum::http::Method::POST,"/api/customers"),(axum::http::Method::POST,"/api/customers/some/addresses")})] #[parameterized_macro(tokio::test)] async fn given_user_is_not_logged_in_when_call_endpoint_then_return_unauthorized( endpoint:...

**Describe the bug** I've following code, which I use to validate the smtp settings a user entered into the system: ```rs async fn test_smtp( server: &str, port: u16, username: &str,...

type:bug
component:transport

The middleware does two requests against keycloak in my setup at startup. Maybe this is reducable to one:

Hello, in the past I used dtor in combination with tokio to clean up my test environment after the test execution. Everything worked fine. But after I removed my Cargo.lock...

Hello, I'm writing integration tests in Rust, where I want to test the HTTP endpoints of my application. For this purpose, I need to mock the Keycloak login server, as...

### Question I'm using the command line tool to remove docker images from my registry server, which has limit storage capacities. I used `regctl tag ls my.reg.de/` to list all...

question
feedback-needed

### Summary When the Number Input support decimal numbers in future, it would be nice to control the separator. E.g. by an optional property "separator: string" which allows to choose...

status: waiting for maintainer
component: number field
enhancement

Hey, the readme here in the repo says you can set: ``` replicas: 10 service: sessionAffinity: ClientIP sessionAffinityConfig: clientIP: timeoutSeconds: 10800 ``` But I wanted to ask how this should...

Hello, after I upgrade the crate `aws-config` to version `1.6.3`, I had problems with the `SmtpClientBuilder`. Here a minimal example with the corresponding panic output: ```rust use mail_send::SmtpClientBuilder; use std::time::Duration;...