Skip to content

Commit

Permalink
fix: race on Dev mode startup (#4124)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
stuartwdouglas and github-actions[bot] authored Jan 20, 2025
1 parent 8e6dee1 commit a08d3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jvm-runtime/plugin/common/jvmcommon.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func (s *Service) runQuarkusDev(ctx context.Context, req *connect.Request[langpb
}
errorFile := filepath.Join(buildCtx.Config.DeployDir, ErrorFile)
schemaFile := filepath.Join(buildCtx.Config.DeployDir, SchemaFile)
runnerInfoFile := filepath.Join(buildCtx.Config.DeployDir, ".runner-info")
runnerInfoFile := filepath.Join(buildCtx.Config.Dir, ".ftl-runner-info")
os.Remove(errorFile)
os.Remove(schemaFile)
os.Remove(runnerInfoFile)
Expand Down

0 comments on commit a08d3c0

Please sign in to comment.