Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 97e2956

Browse files
committed
Added support for artifactsoff param on standard execution model calls.
1 parent b4b413a commit 97e2956

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222

2323
jar {
2424
baseName = 'jDeployR'
25-
version = '7.4.7'
25+
version = '7.4.8'
2626
}
2727

2828
javadoc {

src/main/java/com/revo/deployr/client/call/StandardExecutionModelCall.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public StandardExecutionModelCall(ProjectExecutionOptions options) throws RDataE
4747
httpParams.put("enableConsoleEvents", Boolean.toString(options.enableConsoleEvents));
4848
httpParams.put("echooff", Boolean.toString(options.echooff));
4949
httpParams.put("consoleoff", Boolean.toString(options.consoleoff));
50+
httpParams.put("artifactsoff", Boolean.toString(options.artifactsoff));
5051
httpParams.put("encodeDataFramePrimitiveAsVector", Boolean.toString(options.encodeDataFramePrimitiveAsVector));
5152

5253
if (options.preloadWorkspace != null) {

src/main/java/com/revo/deployr/client/params/ProjectExecutionOptions.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,16 @@ public ProjectExecutionOptions() {
131131
*/
132132
public boolean consoleoff;
133133

134+
/**
135+
* When enabled all named files generated by an R
136+
* execution into the working directory will not be
137+
* cached in the server database nor appear in
138+
* response markup.
139+
*
140+
* On-execution option.
141+
*/
142+
public boolean artifactsoff;
143+
134144
/**
135145
* List of workspace objects to be retrieved from the
136146
* workspace of the current R session following the execution

0 commit comments

Comments
 (0)