Skip to content

Commit

Permalink
fix: set correct URL for upload (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
jd authored Dec 17, 2024
1 parent 03ace42 commit 86e3bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_mergify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def pytest_configure(self, config: _pytest.config.Config) -> None:
return

self.exporter = OTLPSpanExporter(
endpoint=f"{url}/v1/{self.repo_name}/ci/traces",
endpoint=f"{url}/v1/repos/{self.repo_name}/ci/traces",
headers={"Authorization": f"Bearer {self.token}"},
compression=Compression.Gzip,
)
Expand Down

0 comments on commit 86e3bb6

Please sign in to comment.