François Beausoleil
François Beausoleil
I just hit the same kind of issue, where my params look like: ```json { "first_name": "Francois", "last_name": "Beausoleil", "email_locators": [ { "name": "professional", "email": "[email protected]" } ] } ```...
To me, the fix seems to be to change this line: https://github.com/chanzuckerberg/sorbet-rails/blob/8aa611954e5be727f08eee7c16e7eb1314ea0fbd/lib/sorbet-rails/model_plugins/active_record_assoc.rb#L37 The calls to `#belongs_to_and_required?` and `#has_one_and_required?` would need to go, leaving only `T.nilable(#{assoc_class})`. I can certainly write a...
Updated to also run the tests under Maven control. Enjoy!
That would require to remember state from run to run. A stateless way would be to have a percentage chance of notifying, like 10% of runs, or approximately every once...
I was fooling around with dry-system and enabled monitoring. I did a few tests with a UserRepo and actually expected the exception to be caught and the subscriber called, with...
I did a test against my scratch repository and `ghstack land PR2` also lands PR1. Anyway, any clarifications would be welcome!
Is the `website/docs` folder partially generated? I saw 06f447cd2c8ab3935851974e8819ecc4cf0b2656, which seems to imply that the files in `website/docs/commands` are automatically generated. Where can I help and add docs?
I used sl pr, @bolinfest.
This is inconsistent: I just submitted a new PR and didn't get that error. I received the error two or three times yesterday.
I too find that branch a bit cumbersome. I added config in CircleCI to ignore this branch, otherwise we were wasting CI time running specs on that branch. You might...