diff --git a/posthog/api/error_tracking.py b/posthog/api/error_tracking.py index ed9cbbeb92c..1b7dd0df126 100644 --- a/posthog/api/error_tracking.py +++ b/posthog/api/error_tracking.py @@ -31,7 +31,7 @@ class ErrorTrackingSymbolSetViewSet( serializer_class = ErrorTrackingSymbolSetSerializer queryset = ErrorTrackingSymbolSet.objects.all() - scope_object_read_actions = ["list", "retrieve", "stack_frames"] # Add this line + scope_object_read_actions = ["list", "retrieve", "stack_frames"] def safely_get_queryset(self, queryset: QuerySet) -> QuerySet: return queryset.filter(team_id=self.team.id) diff --git a/rust/cymbal/src/main.rs b/rust/cymbal/src/main.rs index 7974ec122fd..aeef8632946 100644 --- a/rust/cymbal/src/main.rs +++ b/rust/cymbal/src/main.rs @@ -97,8 +97,6 @@ async fn main() { .await .expect("Failed to send event to Kafka"); - info!("Processed event"); - offset.store().unwrap(); metrics::counter!(STACK_PROCESSED).increment(1);