Skip to content
Merged
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
7 changes: 5 additions & 2 deletions site/src/request_handlers/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,11 @@ async fn record_try_benchmark_request_without_artifacts(
log::info!(
"Failed to insert try benchmark request, a request for PR`#{pr}` already exists"
);
"This pull request was already queued before and is awaiting a try build to finish."
.to_string()
format!(
"This pull request is already queued and waiting for a try build to finish.

{COMMENT_MARK_TEMPORARY}"
)
}
Ok(BenchmarkRequestInsertResult::Inserted) => get_awaiting_on_bors_message(),
Err(e) => {
Expand Down
Loading