@@ -18,8 +18,6 @@ public class SpaSettings implements Serializable {
1818
1919 private int executionCodeOutputChunkSize ;
2020
21- private int executionFileOutputChunkSize ;
22-
2321 private long scriptStatsLimit ;
2422
2523 @ Activate
@@ -28,7 +26,6 @@ protected void activate(Config config) {
2826 this .appStateInterval = config .appStateInterval ();
2927 this .executionPollInterval = config .executionPollInterval ();
3028 this .executionCodeOutputChunkSize = config .executionCodeOutputChunkSize ();
31- this .executionFileOutputChunkSize = config .executionFileOutputChunkSize ();
3229 this .scriptStatsLimit = config .scriptStatsLimit ();
3330 }
3431
@@ -44,10 +41,6 @@ public int getExecutionCodeOutputChunkSize() {
4441 return executionCodeOutputChunkSize ;
4542 }
4643
47- public int getExecutionFileOutputChunkSize () {
48- return executionFileOutputChunkSize ;
49- }
50-
5144 public long getScriptStatsLimit () {
5245 return scriptStatsLimit ;
5346 }
@@ -68,9 +61,6 @@ public long getScriptStatsLimit() {
6861 @ AttributeDefinition (name = "Execution Code Output Chunk Size" , description = "In bytes. Default is 2 MB." )
6962 int executionCodeOutputChunkSize () default 2 * 1024 * 1024 ;
7063
71- @ AttributeDefinition (name = "Execution File Output Chunk Size" , description = "In bytes. Default is 10 MB." )
72- int executionFileOutputChunkSize () default 10 * 1024 * 1024 ;
73-
7464 @ AttributeDefinition (
7565 name = "Script Stats Limit" ,
7666 description =
0 commit comments