Massimo Galbusera

Results 63 comments of Massimo Galbusera

@noone-silent is this confirmed or it's just a guess? Do you know if someone is looking into it? I'm having memory leak problems in a forever-running CLI script

@noone-silent actually, it wasn't models that were leaking for me, I did find another memory leak: https://github.com/phalcon/cphalcon/issues/16571

> does that mean when using memprof, the generated dump is actually measuring leak only, while using xdebug the dump is having inc. reflecting memory usage? this is really the...

Try to put the same private key that Syphony generated for you in your `.env`, under `JWT_PRIVATE_KEY`

Thanks, but it doesn't work for me on osx10.11.6 and osxfuse 2.8.3: ``` dyld: Library not loaded: /usr/local/lib/libosxfuse.2.dylib Referenced from: /usr/local/bin/fuse-ext2 Reason: Incompatible library version: fuse-ext2 requires version 12.0.0 or...

thanks for the help. I fixed the memory leak by manually commenting part of code. Phalcon was the culprit so it was impossible to spot using reli-prof

I'm not sure this is related to this bug, but this doesn't work either: ```php public function initialize() { $this->hasOne('code', 'ApiCore\App\Models\VendorPricingConfig', 'vendor_code', ['alias' => 'pricingConfig']); } public static function suspendVendor($vendorCode,...

@rudiservo yes, I solved it like you said. Still, it's weird? that there's no cache on the related models

I've tried to be as backward compatible as possible. Probably a better solution could be to have `isStrict` changed to accept `string|bool` (`true` for strict, and can also accept "strict",...

The fact is that the typecheck should be strict but it `should not* overwrite the optional fields... secure and host *are* optional It should be like this, without the `-?`...