Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
corrects call for Process
Browse files Browse the repository at this point in the history
  • Loading branch information
kjaymiller committed Dec 11, 2023
1 parent e7c6d74 commit 06d304d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def live_server_url():
# Start the process
hostname = ephemeral_port_reserve.LOCALHOST
free_port = ephemeral_port_reserve.reserve()
proc = Process(target=run_server, args=(free_port,), daemon=True)
proc = multiprocessing.Process(target=run_server, args=(free_port,), daemon=True)
proc.start()

# Return the URL of the live server once it is ready
Expand Down

0 comments on commit 06d304d

Please sign in to comment.