fix(buffer): Fix noisy error when processing buffer entries for a group that no longer exists (#33982)
Fixes a bug introduced in https://github.com/getsentry/sentry/pull/33950. Previously, when updating
values for groups we would use `create_or_update` to update the row. If the row had been deleted, we
would attempt to update it, affect no rows, then attempt to create it, fail due to not providing
values for not-null columns, catch the integrity error, attemp to update again, do nothing and then
return.
Now we attempt to fetch the row explicitly and raise a `DoesNotExist` exception. We don't actually
care that the row doesn't exist, so just catch the exception and continue on.
Fixes SENTRY-TWB