Kafka Error after Upgrading

If you look at the diff here https://github.com/getsentry/onpremise/compare/5d064c..89e80#diff-4e5e90c6228fd48698d074241c2ba760R92 it shows the change you had to adjust, yes.

I’d rather you migrate your sentry-kafka volume or wipe it: docker volume rm sentry-kafka && docker volume create sentry-kafka. Note that you may lose some events if you wipe it so if you chose to migrate, you can do something like

docker run --rm -it -v sentry-kafka:/kafka alpine ash -c \
  "mv /kafka/data/* /kafka; rm -rf /kafka/data"