Edoardo Tenani
Edoardo Tenani
## Motivation/summary Update release docs to account for the new doc structure. 9x and 8x releases are mostly similar so far, but they may diverge in the future. To account...
This issue aims at consolidating multiple recent issues related to smoke tests and their Golang siblings, functional tests. Will act as meta issue to bridge the gaps between current smoke...
With #16267 we are adding a more extensive test coverage to apm-server, testing more in depth version upgrades and ingest functionalities. What those tests do not include are customization to...
## Motivation/summary Add additional integrationservertest for a recent bug affecting some upgrade paths in APM Server. ## Checklist - [ ] Update [CHANGELOG.asciidoc](https://github.com/elastic/apm-server/blob/main/CHANGELOG.asciidoc) - [ ] Documentation has been updated...
I originally wrote this CLI for Go 1.16! Now that we have Go 1.25 there are probably new idioms to use that this app could benefit from.
There are some tricky areas to test due to the dependency with the secret storage, but it for sure possible to do better and provide more extensive coverage. Key areas...
When I wrote this I was starting out with Go and code documentation was not my main concern. There is already some but needs to be reviewed and improved.
I've been using this CLI for years now and is still stuck at v0.6.0, mostly due to lazyness. The CLI has not changed much, and does not need major changes,...
https://github.com/endorama/2ami/pull/56 introduced a deferred DB close in main, but that would never work due to the use of `os.Exit` extensively. To avoid issues and properly close the db, move the...
As reported in #43 ``` ❯ export 2AMI_RING="Network Management" export: not an identifier: 2AMI_RING ``` In BASH variables can only start with a letter or underscore, see [`name`](https://www.gnu.org/software/bash/manual/html_node/Definitions.html#index-name). The critical...