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

corrects call for Process #306

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading