masavini

Results 19 comments of masavini

17.3 cinnamon edition

> > adb server version (41) doesn't match this client (39); killing... > > It uses a different `adb`, because snap. > > You could try: > > ``` >...

as you guessed written documents differ a lot in size. i'm pretty sure the biggest issues arise with documents containing a long (a few k) list of very small embedded...

wow... pretty big numbers here! ``` 2022-03-31 23:22:38.484 | DEBUG | data_queue.process:process_source_queues:240 - saving new_norm_obj 510793416 function calls (499629295 primitive calls) in 267.419 seconds Ordered by: standard name ncalls tottime...

i made a few more tests over the same document (unfortunately a different one from the example i used in the previous message) using different `save()` options: ```python new_norm_obj.save() #->...

> I see, what you're asking for is very valid indeed. I'm pretty sure there has to be a way on Django admin to set a new password! Hi, what...

that's because of the `LOGIN_REQUIRED_IGNORE_PATHS` list set in `cms/settings.py`: ```python LOGIN_REQUIRED_IGNORE_PATHS = [ r'/accounts/login/$', r'/accounts/logout/$', r'/accounts/signup/$', ] ``` just add a regex for the api endpoint and that's enough: ```python...

just did it (and tested, as well)! #483

@Sgar80 > ... are you suggesting to not use authentication to access the API? yes, API use another authentication system.