Compare commits
2 Commits
a9759795c4
...
2111a5fdc9
| Author | SHA1 | Date | |
|---|---|---|---|
| 2111a5fdc9 | |||
| 6edd20585f |
@@ -13,8 +13,8 @@ post {
|
|||||||
body:json {
|
body:json {
|
||||||
{
|
{
|
||||||
|
|
||||||
"runningNr": "1864553",
|
"runningNr": "1865027",
|
||||||
"reason": "30006"
|
"reason": "packer printed premature"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
Reference in New Issue
Block a user