Compare commits

...

2 Commits

4 changed files with 11 additions and 10 deletions

View File

@@ -13,8 +13,8 @@ post {
body:json { body:json {
{ {
"runningNr": "1864553", "runningNr": "1865027",
"reason": "30006" "reason": "packer printed premature"
} }
} }

View File

@@ -5,7 +5,7 @@ meta {
} }
post { post {
url: {{url}}/lst/old/api/logistics/bookout url: {{url}}/lst/old/api/logistics/removeasreusable
body: json body: json
auth: none auth: none
} }
@@ -13,8 +13,8 @@ post {
body:json { body:json {
{ {
"runningNr": "1865027", "runningNr": "1865018",
"reason": "packer printed premature" "reason": "validating stockout"
} }
} }

View File

@@ -59,6 +59,7 @@ router.get("/", async (req, res) => {
used.rss / 1024 / 1024 used.rss / 1024 / 1024
).toFixed(2)} MB`, ).toFixed(2)} MB`,
eomFGPkgSheetVersion: 1, // this is the excel file version when we have a change to the macro we want to grab this eomFGPkgSheetVersion: 1, // this is the excel file version when we have a change to the macro we want to grab this
masterMacroFile: 1, // this is the excel file version when we have a change to the macro we want to grab this
}); });
}); });

View File

@@ -1,8 +1,8 @@
/* /*
disables sql jobs. disables sql jobs.
*/ */
EXEC msdb.dbo.sp_update_job @job_name = N'[jobName]', @enabled = 0;
DECLARE @JobName varchar(max) = '[jobName]' -- DECLARE @JobName varchar(max) = '[jobName]'
UPDATE msdb.dbo.sysjobs -- UPDATE msdb.dbo.sysjobs
SET enabled = 0 -- SET enabled = 0
WHERE name = @JobName; -- WHERE name = @JobName;