@misterhuydo/sentinel 1.4.40 → 1.4.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cairn/session.json +2 -2
- package/package.json +1 -1
- package/python/sentinel/main.py +2 -2
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-25T08:
|
|
3
|
-
"checkpoint_at": "2026-03-25T08:
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-25T08:07:49.503Z",
|
|
3
|
+
"checkpoint_at": "2026-03-25T08:07:49.504Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/package.json
CHANGED
package/python/sentinel/main.py
CHANGED
|
@@ -85,7 +85,7 @@ async def _handle_error(event: ErrorEvent, cfg_loader: ConfigLoader, store: Stat
|
|
|
85
85
|
logger.debug("Fix already attempted recently for %s", event.fingerprint)
|
|
86
86
|
return
|
|
87
87
|
|
|
88
|
-
patches_dir = Path(sentinel.workspace_dir) / "patches"
|
|
88
|
+
patches_dir = Path(sentinel.workspace_dir).resolve() / "patches"
|
|
89
89
|
status, patch_path, marker = generate_fix(event, repo, sentinel, patches_dir, store)
|
|
90
90
|
|
|
91
91
|
if status != "patch" or patch_path is None:
|
|
@@ -184,7 +184,7 @@ async def _handle_issue(event: IssueEvent, cfg_loader: ConfigLoader, store: Stat
|
|
|
184
184
|
return # Leave the file so admin can add the header
|
|
185
185
|
|
|
186
186
|
try:
|
|
187
|
-
patches_dir = Path(sentinel.workspace_dir) / "patches"
|
|
187
|
+
patches_dir = Path(sentinel.workspace_dir).resolve() / "patches"
|
|
188
188
|
status, patch_path, marker = generate_fix(event, repo, sentinel, patches_dir, store)
|
|
189
189
|
|
|
190
190
|
if status != "patch" or patch_path is None:
|