František Svoboda
František Svoboda
- bug report? yes/no - feature request? yes/no - version: v1.7.1 ### Description Until you realize, that your regex pattern cannot be delimited with `/`, the function does not work...
Id attribute of `` is not retained in the `` that replaces the ``. This may lead to missing styling.
Got this in the toolbar ``` SELECT a.id, a.foo, SUM(CASE WHEN a.status = 0 THEN 1 ELSE 'TO_BE_PAID' END) AS "PENDING_CNT", SUM(CASE WHEN a.status = 'PAID_OUT' THEN 1 ELSE 'TO_BE_PAID'...
Given a Django code: `Boo.objects.filter(foo__icontains="moo")` that produces (approx.) this SQL query: `SELECT * FROM boo WHERE UPPER(foo) LIKE UPPER('%moo%')` the debug toolbar shows this query: `SELECT * FROM boo WHERE...
**Current Behavior** Currently, when attempting to work withz invalid client ID, an ERROR is logged : `Authorization Request failed: java.lang.IllegalArgumentException: Invalid Client Registration with Id: xxxl` (`org.springframework.security.oauth2.client.web.DefaultOAuth2AuthorizationRequestResolver#resolve(javax.servlet.http.HttpServletRequest, java.lang.String, java.lang.String)`) **Desired...
I am trying to run tests in parallel with ```testImplementation("io.camunda.spring:spring-boot-starter-camunda-test:8.4.0")``` And am running into errors when running tests in parallel (classes are parallel, tests single thread): ``` java.lang.RuntimeException: Cannot invoke...
Methods `with` and `with_deep` are very useful for efficient mocking, however when the expectation is not met, they provide little information as to what is actually wrong. It would be...