Skip to content

Commit

Permalink
fix a possible issue with proc requests when default cleanreq job is …
Browse files Browse the repository at this point in the history
…activated
  • Loading branch information
beaudu committed Dec 11, 2023
1 parent d7b0ba7 commit b552568
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion SETUP/createdb-WEBOBSJOBS
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ create table runs (
RCMSG text
);
COMMIT;
INSERT INTO JOBS VALUES('cleanreq','Y','cleanreq','find \$WEBOBS{ROOT_OUTR} -mtime +30 -exec rm -rf {} \; || true','','',86400,1,'cleanreq',0);
INSERT INTO JOBS VALUES('cleanreq','Y','cleanreq','find \$WEBOBS{ROOT_OUTR} -name "*_*_*" -mtime +30 -exec rm -rf {} \; || true','','',86400,1,'cleanreq',0);
INSERT INTO JOBS VALUES('cleantmp','Y','cleantmp','find \$WEBOBS{PATH_TMP_WEBOBS} -mtime +2 -exec rm -rf {} \; || true','','',86400,1,'cleantmp',0);
INSERT INTO JOBS VALUES('locastat','Y','locastat','\$WEBOBS{JOB_MCC} locastat','','',3600,0.8,'locastat',0);
INSERT INTO JOBS VALUES('gridmaps','Y','gridmaps','\$WEBOBS{JOB_MCC} gridmaps','','',3600,0.8,'gridmaps',0);
Expand Down
2 changes: 2 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Sections with `!!` prefix must be carefully read in case of upgrade. It usually

1. Fix an issue with meteo superproc (error when no data are available)

1. Fix a possible issue with proc requests when default cleanreq job is activated

## v2.6.3 (September 2023)
### New features

Expand Down

0 comments on commit b552568

Please sign in to comment.