Willem de Groot
Willem de Groot
Thanks! PS Python 3.8 croaks about ``` 83:SyntaxWarning: "is not" with a literal. Did you mean "!="? ```
Rebooted the slow server with a newer kernel (4.4.0-103-generic) and now the problem is gone. Argh. Ok, closing this.
Reopening this, as I see the same erratic delay on different servers/providers. Sometimes the benchmark takes up to two minutes. Possibly related, strace shows a high amount of mmap/munmap syscalls:...
Thanks for your reply. Other than the reported architectures, I do not have any additional info. My hypothesis is that many small mmaps cause a significant overhead on cloud platforms....
Not sure where I should put my `save()` auto validation/transformation code then... perhaps in a model's `_transform_mutations()` method, that is called by an overloaded `insert()` and `update()` ? PS. @rudyryk...
I use this, which has generic validation if a model has a `validate` method: ```python class ValidationManager(peewee_async.Manager): @asyncio.coroutine def update(self, obj, **kwargs): if hasattr(obj, 'validate'): obj.validate() return super().update(obj, **kwargs) @asyncio.coroutine...
There's no beta9 compatible version right now...
The same problem with Adyen. What do you propose? We could add change the meaning of the version field to "affected version ranges" but that would break current implementations. Other...
Well for the Adyen case ([see here](https://github.com/sansecio/magevulndb/pull/90)) the core version did not matter, so I guess a version range check for the module is the only viable way out. Maybe...
@jissereitsma @rhoerr @mzeis as you are the authors of the composer plugin that consumes these CSV files, do you say we'd introduce new files to support version ranges, or shall...