piping errors to stderr when timeout exceeded
This commit is contained in:
parent
afe525fb0f
commit
f5d829015a
|
@ -42,7 +42,14 @@ module.exports.run = async function ({ inputs, context }) {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const command = processStringSync(inputs.code, context)
|
const command = processStringSync(inputs.code, context)
|
||||||
const stdout = execSync(command, { timeout: 1000 })
|
|
||||||
|
let stdout
|
||||||
|
try {
|
||||||
|
stdout = execSync(command, { timeout: 500 })
|
||||||
|
} catch (err) {
|
||||||
|
stdout = err.message
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
stdout,
|
stdout,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue