Simone Locci

Results 10 issues of Simone Locci

test

bug
urgent

I have a custom user model like this: ``` from djongo.models import JSONField class User(AbstractUser): _id = ObjectIdField(primary_key=True) extra = JSONField(default=dict) ``` doesn't work on the admin page, in particular...

#### Traceback ``` Not implemented alter command for SQL ALTER TABLE "django_q_task" ADD COLUMN "id" string NOT NULL PRIMARY KEY Traceback (most recent call last): File "/home/pimo/.pyenv/versions/django-pocs-3.10.4/lib/python3.10/site-packages/djongo/cursor.py", line 51, in...

Hi, when I use gevent execution pool on Celery, instead of the default one, when an exception occurs it is logged in this way: ``` [2022-06-15 11:14:40,877: WARNING/MainProcess] Traceback (most...

In the API it seems possible https://docs.openstack.org/api-ref/block-storage/v3/?expanded=update-a-volume-detail#update-a-volume

``` gateway_resource = vdc.get_gateway('EDGE-XXDH-CMP-Pub-01') gateway_obj = Gateway(client, 'EDGE-XXDH-CMP-Pub-01', href=gateway_resource.get('href')) gateway_obj.get_resource().Configuration.GatewayInterfaces.GatewayInterface gateway = Gateway(client, resource=gateway_resource) gateway.get_resource().Configuration.GatewayInterfaces.GatewayInterface ``` The second block is not working `gateway.get_resource().Configuration.GatewayInterfaces.GatewayInterface` throws: ``` Traceback (most recent call last):...

This feature is essential to be able to use Djongo on AWS with DocumentDB. Please note: * that according to [this StackOverflow comment](https://stackoverflow.com/a/65666899) the AWS declared limit is 63 chars...

## Actual Behavior When calling `GET /vendors//products//cve` there are some duplicates CVE in different pages. ## Steps to Reproduce the Problem ```python def poc(): page = 1 responses = []...

bug

## Actual Behavior When calling `GET /vendors/` for some vendor names with `\/` in the name, the API responds with 404. ## Steps to Reproduce the Problem - call `GET...

bug

A route with a converter like this: `api.add_route('/{some_field:mc}', some_resource)` produces this kind of spec: `"/{some_field:mc}"` instead of `"/{some_field}"` https://falcon.readthedocs.io/en/stable/api/api.html#falcon.routing.CompiledRouterOptions.converters