Adrian Cole
Adrian Cole
@mrfelek FYI, a combination of factors including abandoned and/or unmerged PRs, as well version and tag clutter in this repo led to moving helm to its own repo, owned by...
salvaged changes not already in master and rebased. will merge on green. Thanks @minwoox!
thanks. will be in next release
I think this has been done for a long time, but I just verified we're good now also. ```bash $ docker buildx imagetools inspect openzipkin/zipkin Name: docker.io/openzipkin/zipkin:latest MediaType: application/vnd.docker.distribution.manifest.list.v2+json Digest:...
So, regardless of backend error, you can use the logger of the HTTP collector... like this: ```bash $ java -jar zipkin.jar --logging.level.zipkin2.server.internal.ZipkinHttpCollector=DEBUG ``` Then, if you have a message that's...
feel free to have us re-open if this doesn't solve well enough, or if we should make a special short env shortcut to that logger.
We run tests with cassandra 4.1.4, but our test image pre-installs the schema. Maybe there is a glitch in schema auto-install.. https://github.com/openzipkin/zipkin/blob/master/docker/test-images/zipkin-cassandra/install.sh#L207
Here are the integration tests, [ITEnsureSchema](https://github.com/openzipkin/zipkin/blob/master/zipkin-storage/cassandra/src/test/java/zipkin2/storage/cassandra/ITEnsureSchema.java). This is kicked off by [ITCassandraStorageHeavy](https://github.com/openzipkin/zipkin/blob/master/zipkin-storage/cassandra/src/test/java/zipkin2/storage/cassandra/ITCassandraStorageHeavy.java#L130-L147) on every PR that affects java.
OK I can reproduce the issue now. I think maybe we have to harden our tests for the mixed-case schema install thing. ```yaml version: '3' services: cassandra: image: cassandra:4.1.3 environment:...
So, this doesn't happen with our example image.. and I didn't see anything in cassandra logs about failing.. I wonder if the schema update isn't visible by default on the...