Skip to content

Commit

Permalink
Merge pull request #877 from janhq/fix/nitro_ip_interface
Browse files Browse the repository at this point in the history
fix: Nitro interface update to prevent warning
  • Loading branch information
hiro-v authored Dec 6, 2023
2 parents a3bc768 + 52d61dd commit efdc776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/inference-extension/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async function spawnNitroProcess(): Promise<void> {
const binaryPath = path.join(binaryFolder, binaryName);

// Execute the binary
subprocess = spawn(binaryPath, [1, "0.0.0.0", PORT], {
subprocess = spawn(binaryPath, [1, "127.0.0.1", PORT], {
cwd: binaryFolder,
});

Expand Down

0 comments on commit efdc776

Please sign in to comment.