Skip to content

Commit

Permalink
fix(fronted): Fix Tensorboard.tsx endpoint (kubeflow#1263)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Jun 26, 2023
1 parent 66a129c commit 691f225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/viewers/Tensorboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ function makeProxyUrl(podAddress: string) {
// We use this pod address without encoding since encoded pod address failed to open the
// tensorboard instance on this pod.
// TODO: figure out why the encoded pod address failed to open the tensorboard.
return 'apis/v1beta1/_proxy/' + podAddress.replace(/(^\w+:|^)\/\//, '');
return 'apis/v1/_proxy/' + podAddress.replace(/(^\w+:|^)\/\//, '');
}

export default TensorboardViewer;

0 comments on commit 691f225

Please sign in to comment.