Skip to content

Commit 15f2161

Browse files
committed
fix: [159] removed obsolete Run Script WF parameter printInOutput
Signed-off-by: Mihail Penchev (c) <pmihail@vmware.com>
1 parent 83b5c79 commit 15f2161

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

extension/src/client/command/RunAction.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,6 @@ class ActionRunner {
287287
value: {
288288
string: { value: fileContent }
289289
}
290-
},
291-
{
292-
name: "printInOutput",
293-
type: "boolean",
294-
value: {
295-
boolean: { value: true }
296-
}
297290
}
298291
]
299292

packages/node/vrdt-common/src/rest/VroRestClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ export class VroRestClient {
321321
"GET",
322322
`workflows/${workflowId}/executions/${executionId}/syslogs` +
323323
`?conditions=severity=${severity}` +
324-
`&conditions=timestamp${encodeURIComponent(">")}${timestamp}` // + "&conditions=type=system"
324+
`&conditions=timestamp${encodeURIComponent(">")}${timestamp}`
325325
)
326326

327327
const messages: LogMessage[] = []

0 commit comments

Comments
 (0)