DK

Results 11 issues of DK

If I use the Neon color scheme (version 3.2.2) and Sublime Text's official Python syntax definition (build 4126), I get dictionary literals highlighted like this: ![Screenshot from 2022-03-23 22-52-24](https://user-images.githubusercontent.com/4944562/159809298-65ddf690-7612-417d-b834-6f963bc5322f.png) This...

bug
enhancement
feedback
status-in-progress

![screenshot from 2014-07-08 21 58 15](https://cloud.githubusercontent.com/assets/4944562/3520020/d6d2a1de-0725-11e4-8113-fcf0abb87916.png) The above expression is valid and working, but, I believe, PI highlights it incorrectly.

This will allow to do things like ``` class BaseModel(model.RedisModel, metaclass=abc.ABCMeta): ``` Without such inheritance or other hacks the above line gives ``` TypeError: metaclass conflict: the metaclass of a...

### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description If two separate models with different `use_enum_values` settings both have fields with the same enum, pydantic...

bug V2

`resourceGroupId` in `/presto/selector/read/{resourceGroupId}` is wrongly annotated with `@QueryParam`, when it's actually a path parameter: ``` @GET @Path("/selector/read/{resourceGroupId}") public Response readSelector(@QueryParam("resourceGroupId") String resourceGroupIdStr, ... ``` As a result, `/presto/selector/read/X` returns all...

[This](https://trinodb.github.io/trino-gateway/security/#tls-configuration) page says > The default authentication type is set using defaultType: "form" Following types of the authentications are supported. However, when I set `defaultType: "oauth"` and provide both `oauth`...

trino-gateway may fail with an unhandled NPE if it's unable to find the routing group for a particular query ID. ``` jakarta.servlet.ServletException: com.google.common.util.concurrent.UncheckedExecutionException: java.lang.NullPointerException ... at java.base/java.lang.Thread.run(Thread.java:1447) Caused by: com.google.common.util.concurrent.UncheckedExecutionException:...

Since version 14 @ https://github.com/trinodb/trino-gateway/commit/40337f6444362478beba6d555c1425f3490b3cc1, in an effort to enable developer-friendly DEBUG logs, trino-gateway truncates (and decodes) the body of proxy responses, but does not update the `Content-Length` header accordingly,...

Trino Gateway can perform basic query analysis for query routing purposes (`requestAnalyzerConfig.analyzeRequest=true`). However, it doesn't only analyze requests to `/v1/statement` path, but also requests to `/ui` path, for example. As...