Fix process watch.paths not triggering restarts#2715
Merged
domenkozar merged 3 commits intomainfrom Apr 8, 2026
Merged
Conversation
Watch paths were serialized as Nix store paths instead of source directory paths because the actual code path (tasks in processes.nix) lacked the toString conversion. The previous fix on nativeConfigJson targeted dead code that was never read by the Rust process manager. Also remove the unused nativeConfigJson option and processConfig plumbing from native.nix. Fixes #2657 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
🔍 Suggested ReviewersBased on git blame analysis of the changed lines, the following contributors have significant experience with the modified code:
Please consider reviewing this PR as you have authored significant portions of the code being modified. Your expertise would be valuable! 🙏 This comment was automatically generated by git-blame-auto-reviewer Last updated: 2026-04-08T09:08:46.452Z |
Deploying devenv with
|
| Latest commit: |
637c7bb
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://b7f473b4.devenv.pages.dev |
| Branch Preview URL: | https://fix-process-watch-paths-task.devenv.pages.dev |
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Watch paths were serialized as Nix store paths instead of source directory paths because the actual code path (tasks in processes.nix) lacked the toString conversion. The previous fix on nativeConfigJson targeted dead code that was never read by the Rust process manager.
Also remove the unused nativeConfigJson option and processConfig plumbing from native.nix.
Fixes #2657