Adam Wootton
Adam Wootton
My biggest use for this is to allow nulls in addition to a particular type, so I can validate fields like this: ```javascript class Validator { @IsType(['string', null]) myField: string...
I just ran into this, from what I could find the workaround is to specify the zone_id along with every route you define: ``` [env.dev] route = { pattern =...
I think this is an important thing to publish, it would have saved us from at least one production incident related to the behaviour change in the linked issue. After...
I also ran into this while trying to use the class remapping tools from NestJS: https://docs.nestjs.com/techniques/validation#mapped-types It would be really powerful to be able to generate correct schemas from validators...
@manast we are starting to run into this. Do you know what features specifically require pipelines? Is there some subset of features we can still use without them?
On looking at the code, it seems that the scheduling for "every" parameter rounds the current date to the nearest interval of length "every": https://github.com/OptimalBits/bull/blob/develop/lib/repeatable.js#L170 As far as I can...
From what I can tell, the job basically keeps rescheduling itself each time it is processed, using the result of that computation to determine the new time. Wouldn't the atomicity...
Just wanted to bump this to make sure it's actually the expected behaviour since it seems to me that this wouldn't be desired in the majority of cases.
@JanusSpark I ended up just creating a fork of the library that includes the patch I wrote above.
Hi @edbzn , you are correct that with my stated example I could just do that, however I should have mentioned that my Nx project names also do not line...