Loic Nageleisen
Loic Nageleisen
Turns out, this worked fine: ``` launchd.agents."colima.default" = { command = "${pkgs.colima}/bin/colima start --foreground"; serviceConfig = { Label = "com.colima.default"; RunAtLoad = true; KeepAlive = true; # not sure where...
... which gives you [Apple's container framework via same-named command](https://github.com/apple/container) (which is more like firecracker microVMs), not dockerd/containerd/k8s which is what Colima provides e.g as a drop-in replacement for Docker...
Hey @beauraF about this: > you made a proposal in the initial discussion, is that's still the direction you want to go in? are you referring to this? > In...
> our custom code that set a service to a `rack.request` based on the resource That's interesting, does this mean you're overriding the `rack.request` span service name? > In theory,...
I came up with this as a workaround: - pinning the installer version (I know, not what you asked, you want it logged) - printing out the Nix version ```...
Can't check UI settings RN because affected machine is remote, instead worked around with: ``` security.pam.services.sudo_local.enable = false; ```
Looks like it attempts to fix #1036, which I think I have working in #1037? EDIT: Ah, I seem to have missed it, this one predates mine. Interesting that we...
> Is the dev suffix added somewhere else? Should we add it here in the version.rb instead? Currently `version.rb` defaults to the release version format (no `PRE` nor `BUILD`). There's...
@cbeauchesne do you anticipate any issue with this change? i.e is there any ruby-specific off-by-one system test code that would be upset by us updating the version in `master` right...
Thanks @cbeauchesne this is exactly the "off-by-one" I was looking for! https://github.com/DataDog/system-tests/blob/65b9baeced2de4f3053d367f9d45332a33ecff65/utils/_context/library_version.py#L117-L118 ```python if library == "ruby": if len(self.version.build) != 0 or len(self.version.prerelease) != 0: # we are not in...