Louis Rose

Results 10 comments of Louis Rose

Is there more to be done on this change? Anything I could help with? We're keen to see this change land and stop managing Grafana API keys outside of Terraform!

Hi there, I also ran into the same issue as @acorncom this afternoon whilst trying to use PHP VCR with Braintree. I've cooked up a failing test and fix on...

Thanks for your quick replies, @visavi and @koenpunt > Try calling $job->save(); before create_export I've tried changing the code to this: ``` php $job = new Job(["name" => "testJob"]); $job->save();...

I'd really like to keep the relationship as a "belongs to" (i.e., the foreign key on the Job table) if at all possible. Interestingly, when I run this code: ```...

Just so I can be a little more sure that it's perhaps not my setup... I've been able to recreate this issue with the following new PHP AR unit test,...

Ok, I _think_ I _might_ have a solution for this... I've cooked up PR #548.

Thanks for the suggestion @SuperFluffy. We have something similar to the pattern you suggest at the moment, but we'd really prefer to write: ```rs info!(the_object, "example usage") ``` which would...

**Edit:** On closer inspection, my suggestion below does not work, because PHP AR uses the "source" attribute to instantiate objects accessed through the relationship. (So you would end up with...

I _think_ I'm running into this problem now, as I'm trying to use a `StreamSubscribe` as input to a `reflector`. Any thoughts on which direction you'd like to go in...

Thanks @mateiidavid. I had a quick attempt at this, but it's a bit beyond my level of Rust at the moment!