Skip to content

Commit

Permalink
Correct module name for Python remoting server
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwannheden committed Dec 30, 2024
1 parent eb3128a commit 8947f56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private void initializeRemoting(ExecutionContext ctx) throws IOException {

int port = 54322;
if (!isServerRunning(port)) {
ProcessBuilder processBuilder = new ProcessBuilder(executable, "-m", "rewrite.remote.server", Integer.toString(port));
ProcessBuilder processBuilder = new ProcessBuilder(executable, "-m", "rewrite_remote.server", Integer.toString(port));
if (!pythonPath.isEmpty()) {
Map<String, String> environment = processBuilder.environment();
environment.compute("PYTHONPATH", (k, current) ->
Expand Down

0 comments on commit 8947f56

Please sign in to comment.