File tree 2 files changed +7
-0
lines changed
frontend/pipeline-console-view/pipeline-console/main
java/io/jenkins/plugins/pipelinegraphview/consoleview
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 112
112
.console-text div {
113
113
text-indent : 0 ;
114
114
display : inline-block ;
115
+ overflow-wrap : anywhere;
115
116
}
116
117
117
118
pre .console-output-line {
Original file line number Diff line number Diff line change 1
1
package io .jenkins .plugins .pipelinegraphview .consoleview ;
2
2
3
3
import com .fasterxml .jackson .databind .ObjectMapper ;
4
+ import edu .umd .cs .findbugs .annotations .SuppressFBWarnings ;
4
5
import hudson .console .AnnotatedLargeText ;
5
6
import hudson .util .HttpResponses ;
6
7
import io .jenkins .plugins .pipelinegraphview .PipelineGraphViewConfiguration ;
@@ -117,6 +118,11 @@ protected JSONObject getAllSteps() throws IOException {
117
118
}
118
119
119
120
@ WebMethod (name = "log" )
121
+ @ SuppressWarnings ("ResultOfMethodCallIgnored" )
122
+ @ SuppressFBWarnings (
123
+ value = "RV_RETURN_VALUE_IGNORED" ,
124
+ justification =
125
+ "Doesn't seem to matter in practice, docs aren't clear on how to handle and most places ignore it" )
120
126
public void getConsoleText (StaplerRequest2 req , StaplerResponse2 rsp ) throws IOException {
121
127
String nodeId = req .getParameter ("nodeId" );
122
128
if (nodeId == null ) {
You can’t perform that action at this time.
0 commit comments