Matej Spiller Muys
Matej Spiller Muys
I am in a process of validating colima for development (instead of Docker Desktop). Using volume mounts for python environment using volume pointing to our source code. If I compare...
Is this plugin thread safe? Can it be marked as such? [WARNING] ***************************************************************** [WARNING] \* Your build is requesting parallel execution, but project * [WARNING] \* contains the following plugin(s)...
There is error when validating using schema generated by jackson 2.9.6: CODE: ``` @Test public void generateSchema() throws IOException { ObjectMapper mapper = new ObjectMapper(); JsonSchemaGenerator schemaGen = new JsonSchemaGenerator(mapper);...
We are measuring data per each registered user and we have a dedicated series for each user. With a test data of just around 50k of users it takes a...
There is an open issue on redoc that is not allowing to download the specification when published on nexus. https://github.com/Redocly/redoc/issues/1902 Issue:  This fix fixes the downloading of generated specification...
1. unable to add custom grant to a model (for admin ui): For example: ``` - urn:ietf:params:oauth:grant-type:jwt-bearer - urn:ietf:params:oauth:grant-type:token-exchange ``` https://oauthlib.readthedocs.io/en/latest/oauth2/grants/custom_grant.html only solution is to modify meta directly: ``` oauth2_provider_models.AbstractApplication._meta.get_field(...
I am missing global state per file. For example: Renaming a method - update import - rename usages I have a Rule derived class that finds the correct Import and...
In libmagic there was fix to support some special mp4: https://bugs.astron.com/view.php?id=246 It does not work in filetype.py.
# Bug report Mypy crashes ## What's wrong class SomeEvent(models.Model): user_id = models.IntegerField(null=False, unique=True) exception_name = models.CharField(max_length=200, null=True, blank=True) exception_type = models.CharField(max_length=200, null=True, blank=True) And then in code: data =...
**Bug Report** Using latest mypy 0.971 stub is incorrectly generated (missing import in case of multiple "same imports"). ``` from __future__ import absolute_import import typing import stubgenbug.common.circuit_breaker import stubgenbug.common.typing class...