piping errors to stderr when timeout exceeded
This commit is contained in:
parent
7c4ec2f23a
commit
5be2182fef
|
@ -42,7 +42,14 @@ module.exports.run = async function ({ inputs, context }) {
|
|||
|
||||
try {
|
||||
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 {
|
||||
stdout,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue