Fix build

This commit is contained in:
Arnaud 2024-11-21 09:30:24 +01:00
parent 602516436a
commit eed0331ce1
No known key found for this signature in database
GPG Key ID: 69D6CE281FCAE663

View File

@ -144,11 +144,11 @@ export const CodexSdk = {
export const PortForwardingUtil = {
...PUtil,
check: (port: number) => {
check: (ip: string, port: number) => {
if (import.meta.env.CI) {
return Promise.resolve({ reachable: true })
}
return PUtil.check(port)
return PUtil.check([ip, port])
}
}