Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion services/bundle_analysis/notify/messages/commit_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def build_upgrade_message(self, context: CommitStatusNotificationContext) -> str
)

def _cache_key(self, context: CommitStatusNotificationContext) -> str:
return make_hash_sha256(
return "cache:" + make_hash_sha256(
dict(
type="status_check_notification",
repoid=context.repository.repoid,
Expand Down
2 changes: 1 addition & 1 deletion services/notification/notifiers/status/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def maybe_send_notification(
)
head_commit = comparison.head.commit if comparison.head else None

cache_key = make_hash_sha256(
cache_key = "cache:" + make_hash_sha256(
dict(
type="status_check_notification",
repoid=head_commit.repoid,
Expand Down
Loading