File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,8 @@ export const watchBuildLogsByTemplateVersionId = (
187
187
188
188
const proto = location . protocol === "https:" ? "wss:" : "ws:" ;
189
189
const socket = new WebSocket (
190
- `${ proto } //${ location . host
190
+ `${ proto } //${
191
+ location . host
191
192
} /api/v2/templateversions/${ versionId } /logs?${ searchParams . toString ( ) } `,
192
193
) ;
193
194
@@ -269,7 +270,8 @@ export const watchBuildLogsByBuildId = (
269
270
}
270
271
const proto = location . protocol === "https:" ? "wss:" : "ws:" ;
271
272
const socket = new WebSocket (
272
- `${ proto } //${ location . host
273
+ `${ proto } //${
274
+ location . host
273
275
} /api/v2/workspacebuilds/${ buildId } /logs?${ searchParams . toString ( ) } `,
274
276
) ;
275
277
socket . binaryType = "blob" ;
@@ -392,7 +394,7 @@ export class MissingBuildParameters extends Error {
392
394
* lexical scope.
393
395
*/
394
396
class ApiMethods {
395
- constructor ( protected readonly axios : AxiosInstance ) { }
397
+ constructor ( protected readonly axios : AxiosInstance ) { }
396
398
397
399
login = async (
398
400
email : string ,
You can’t perform that action at this time.
0 commit comments