Florian Apolloner
Florian Apolloner
Interesting, after executing `/gitlab settings notifications on` the username is resolved properly. Nevertheless I do not think this is the expected behavior and this KV-mapping shouldn't be used?
Currently blocked by https://github.com/xanzy/go-gitlab/pull/1183
This is now enabled for everyone and getting more features every release. I think it would make sense to move "merge requests needing review" over to "reviewers" instead of "assignee"...
I can confirm that the issue starts with Terraform 0.15.4. Given the debug output of legacy feature usage I am not sure who is at fault (TF or the provider)
I do not think it makes sense to extend `scsi_type` to include NVME. it will need it's own `nvme_` options like `ide_` & `sata_`.
I don't think it is currently possibly with the terraform provider. If you do `terraform import` of an existing machine with nvme disks you will see that those are not...
I am currently using this: ```py def pydantic_loc_to_xpath(location_path): result = "" for loc in location_path: if loc == "__root__": continue if isinstance(loc, int): result += f"[{loc}]" else: result += f"/f:{loc}"...
Hi there, I just found lightbus and postgres support looks interesting. Thinking about it, I am wondering if it doesn't help to investigate this issue from a postgresql POV. For...
> In Lightbus there may be zero or more consumers[1] for an event, and each consumer will receive each event at least once. Ah right, this is probably what I...
@spaceone Your proposed solution serializes the event dispatching, wouldn't it be nicer to fire them all and then just wait for the results? This way the event handlers could run...