Skip to content

Commit c4f8fb2

Browse files
committed
add -1 as an optioni
1 parent 8f4f8bc commit c4f8fb2

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

docs/configuration/configuration.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,11 @@ validation.defaultIgnoreParams = ["param1", "param2"] // default: []
9797

9898
## maxErrValSize
9999

100-
Configure the maximum characters of a value that may be shown in an error message. It takes a whole number above or equal to `1`. A value will be truncated when it goes over the maximum amount of characters. See the below example where the limit is to 20 characters:
100+
Configure the maximum characters of a value that may be shown in an error message. It takes a whole number above or equal to `1`. A value will be truncated when it goes over the maximum amount of characters.
101+
102+
Setting this option to `-1` will allow any amount of characters for values.
103+
104+
See the below example where the limit is to 20 characters:
101105

102106
```
103107
* --test (abcdefghij...qrstuvwxyz): Value is [string] but should be [integer]

plugins/nf-schema/src/main/nextflow/validation/config/ValidationConfig.groovy

+8-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ValidationConfig {
2020
final public Boolean failUnrecognisedHeaders
2121
final public String parametersSchema
2222
final public Boolean showHiddenParams
23-
final public Integer maxErrValSize
23+
final public Integer maxErrValSize = 150
2424
final public HelpConfig help
2525
final public SummaryConfig summary
2626

@@ -33,7 +33,13 @@ class ValidationConfig {
3333
failUnrecognisedParams = config.failUnrecognisedParams ?: false
3434
failUnrecognisedHeaders = config.failUnrecognisedHeaders ?: false
3535
showHiddenParams = config.showHiddenParams ?: false
36-
maxErrValSize = config.maxErrValSize && config.maxErrValSize >= 1 ? config.maxErrValSize : 150
36+
if(config.maxErrValSize != null) {
37+
if(config.maxErrValSize >= 1 || config.maxErrValSize == -1) {
38+
maxErrValSize = config.maxErrValSize
39+
} else {
40+
log.warn("`validation.maxErrValSize` needs to be a value above 0 or equal to -1, defaulting to ${maxErrValSize}")
41+
}
42+
}
3743
if(config.containsKey("showHiddenParams")) {
3844
log.warn("configuration option `validation.showHiddenParams` is deprecated, please use `validation.help.showHidden` or the `--showHidden` parameter instead")
3945
}

plugins/nf-schema/src/main/nextflow/validation/validators/JsonSchemaValidator.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public class JsonSchemaValidator {
6565

6666
def String instanceLocation = error.getInstanceLocation()
6767
def String value = getValueFromJsonPointer(instanceLocation, rawJson)
68-
if(value.size() > config.maxErrValSize) {
68+
if(config.maxErrValSize >= 1 && value.size() > config.maxErrValSize) {
6969
value = "${value[0..(config.maxErrValSize/2-1)]}...${value[-config.maxErrValSize/2..-1]}" as String
7070
}
7171

0 commit comments

Comments
 (0)