File tree Expand file tree Collapse file tree 4 files changed +7
-15
lines changed
nf-tower/src/main/io/seqera/tower/plugin Expand file tree Collapse file tree 4 files changed +7
-15
lines changed Original file line number Diff line number Diff line change @@ -55,9 +55,10 @@ dependencies {
55
55
}
56
56
57
57
// address security vulnerabilities
58
- runtimeOnly ' io.netty:netty-common:4.1.118.Final'
59
- runtimeOnly ' io.netty:netty-handler:4.1.118.Final'
60
-
58
+ runtimeOnly ' io.netty:netty-common:4.1.124.Final'
59
+ runtimeOnly ' io.netty:netty-handler:4.1.124.Final'
60
+ runtimeOnly ' io.netty:netty-codec-http2:4.1.124.Final'
61
+
61
62
testImplementation(testFixtures(project(" :nextflow" )))
62
63
testImplementation project(' :nextflow' )
63
64
testImplementation " org.apache.groovy:groovy:4.0.26"
Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ dependencies {
48
48
}
49
49
50
50
// address security vulnerabilities
51
- runtimeOnly ' io.netty:netty-handler:4.1.118.Final'
51
+ runtimeOnly ' io.netty:netty-handler:4.1.124.Final'
52
+ runtimeOnly ' io.netty:netty-codec-http2:4.1.124.Final'
52
53
runtimeOnly ' net.minidev:json-smart:2.5.2'
53
54
54
55
testImplementation(testFixtures(project(" :nextflow" )))
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class TowerFusionToken implements FusionToken {
107
107
if ( ! endpoint )
108
108
throw new IllegalArgumentException (" Missing Seqera Platform endpoint" )
109
109
if ( ! accessToken )
110
- throw new IllegalArgumentException (" Missing Seqera Platform access token" )
110
+ throw new IllegalArgumentException (" Seqera Platform access token is required to use Fusion -- see https://docs.seqera.io/fusion/licensing for more information " )
111
111
}
112
112
113
113
/**
Original file line number Diff line number Diff line change @@ -77,14 +77,4 @@ $NXF_CMD -C ./google.config \
77
77
run nextflow-io/hello \
78
78
-process.array 10
79
79
80
- # # Legacy GLS tests
81
-
82
- # # run test-subdirs inputs/outputs
83
- $NXF_CMD -C ./gls.config -q run ./test-subdirs.nf
84
-
85
- # # run publishDir overwrite
86
- $NXF_CMD -C ./gls.config run ./test-overwrite.nf
87
-
88
- # # re-executing should overwrite the published file
89
- [ ` $NXF_CMD -C ./gls.config run ./test-overwrite.nf -resume | { grep ' Failed to publish file' -c || true ; }` == 0 ] && echo OK || { echo ' Failed to publish file' && false ; }
90
80
You can’t perform that action at this time.
0 commit comments