We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a808fed commit 78735b3Copy full SHA for 78735b3
internal/server/router/connection.go
@@ -36,7 +36,7 @@ func (cr *ConnectionRouter) Get(ctx *gin.Context) {
36
}
37
38
if conn.Status.Phase == tfv1.TensorFusionConnectionRunning {
39
- ctx.JSON(200, conn.Status.ConnectionURL)
+ ctx.String(200, conn.Status.ConnectionURL)
40
return
41
42
@@ -47,7 +47,7 @@ func (cr *ConnectionRouter) Get(ctx *gin.Context) {
47
// Wait for connection updates
48
for conn := range ch {
49
50
51
52
53
0 commit comments