Skip to content

Commit

Permalink
chore(ourlogs): Change the test to point to eap_items table (#85862)
Browse files Browse the repository at this point in the history
It also disables the test for now, circular dependency with
getsentry/snuba#6911
  • Loading branch information
colin-sentry authored Feb 25, 2025
1 parent ab65e3e commit 3c3bb3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/testutils/cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ def store_spans(self, spans, is_eap=False):
def store_ourlogs(self, ourlogs):
assert (
requests.post(
settings.SENTRY_SNUBA + "/tests/entities/ourlogs/insert",
settings.SENTRY_SNUBA + "/tests/entities/eap_items_log/insert",
data=json.dumps(ourlogs),
).status_code
== 200
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from tests.snuba.api.endpoints.test_organization_events import OrganizationEventsEndpointTestBase


@pytest.mark.skip("race condition with snuba changes")
class OrganizationEventsOurLogsEndpointTest(OrganizationEventsEndpointTestBase):
dataset = "ourlogs"

Expand Down

0 comments on commit 3c3bb3b

Please sign in to comment.