Arne Brasseur
Arne Brasseur
This seems to work reasonably well as a workaround: ```terraform resource "random_id" "group-manager-suffix" { byte_length = 4 } resource "google_compute_instance_group_manager" "my-group" { name = "my-instance-group-manager-${random_id.group-manager-suffix.hex}" ... lifecycle { create_before_destroy =...
Yeah sure, this would be fairly easy to do both as a plugin or a hook. Seems general purpose enough that it would be nice to make a plugin for...
Hey, finally had a chance to look at this... just skimmed it to get a first impression. I really appreciate the added tests, including the gherkin tests. I would much...
@chromalchemy which Hiccup implementation are you using (weavejester's original hiccup, lambdaisland.hiccup, reagent, ...?) Any chance you could put together a repo that reproduces the issue? I had a look at...
Hi Alex, Seems like this might actually be a girouette issue. Have you filed an upstream issue we could track? Thanks!
Really hard to say. Probably a few days at the minimum, but you really don't know until you sit down and try to do it... I believe there's been some...
That's really cool. It's dropped off my radar a bit... Work has been pretty busy, and there's other open source stuff that's grabbed more of my interest when I'm off...
And yeah it's not just bukkit... Bukkit at least tries to expose a reasonable API that can be maintained across versions, but they're still basically monkey patching mojang code, and...
Can't you already do this? ``` :launchpad/options {:java-args [...]} ```
Hi Gabriel, A `deftest` is normally only ever called for side effects, the fact that it returns its last value is an implementation detail that is ignored by test runners....