Skip to content

Commit

Permalink
Merge pull request #13117 from Katharine/include-host-in-kubectl-command
Browse files Browse the repository at this point in the history
Include host in kubectl command
  • Loading branch information
k8s-ci-robot authored Jun 21, 2019
2 parents a5c6758 + e1339ae commit b67b58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prow/cmd/deck/static/prow/prow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ function redraw(fz: FuzzySearch): void {
}

function createRerunCell(modal: HTMLElement, rerunElement: HTMLElement, prowjob: string): HTMLTableDataCellElement {
const url = `/rerun?prowjob=${prowjob}`;
const url = `${location.protocol}//${location.host}/rerun?prowjob=${prowjob}`;
const c = document.createElement("td");
const i = icon.create("refresh", "Show instructions for rerunning this job");
const login = getCookieByName("github_login");
Expand Down

0 comments on commit b67b58d

Please sign in to comment.