10
10
11
11
import org .apache .logging .log4j .LogManager ;
12
12
import org .apache .logging .log4j .Logger ;
13
+ import org .apache .logging .log4j .message .ParameterizedMessageFactory ;
13
14
import org .opensearch .ExceptionsHelper ;
14
15
import org .opensearch .action .get .GetRequest ;
15
16
import org .opensearch .action .search .SearchRequest ;
@@ -201,7 +202,10 @@ private void createExecute(WorkflowRequest request, User user, ActionListener<Wo
201
202
try {
202
203
validateWorkflows (templateWithUser );
203
204
} catch (Exception e ) {
204
- String errorMessage = "Workflow validation failed for template " + templateWithUser .name ();
205
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
206
+ "Workflow validation failed for template {}" ,
207
+ templateWithUser .name ()
208
+ ).getFormattedMessage ();
205
209
logger .error (errorMessage , e );
206
210
listener .onFailure (
207
211
e instanceof FlowFrameworkException ? e : new FlowFrameworkException (errorMessage , ExceptionsHelper .status (e ))
@@ -218,7 +222,10 @@ private void createExecute(WorkflowRequest request, User user, ActionListener<Wo
218
222
flowFrameworkSettings .getMaxWorkflows (),
219
223
ActionListener .wrap (max -> {
220
224
if (FALSE .equals (max )) {
221
- String errorMessage = "Maximum workflows limit reached: " + flowFrameworkSettings .getMaxWorkflows ();
225
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
226
+ "Maximum workflows limit reached: {}" ,
227
+ flowFrameworkSettings .getMaxWorkflows ()
228
+ ).getFormattedMessage ();
222
229
logger .error (errorMessage );
223
230
FlowFrameworkException ffe = new FlowFrameworkException (errorMessage , RestStatus .BAD_REQUEST );
224
231
listener .onFailure (ffe );
@@ -307,7 +314,10 @@ private void createExecute(WorkflowRequest request, User user, ActionListener<Wo
307
314
}));
308
315
}
309
316
}, exception -> {
310
- String errorMessage = "Failed to update use case template " + request .getWorkflowId ();
317
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
318
+ "Failed to update use case template {}" ,
319
+ request .getWorkflowId ()
320
+ ).getFormattedMessage ();
311
321
logger .error (errorMessage , exception );
312
322
if (exception instanceof FlowFrameworkException ) {
313
323
listener .onFailure (exception );
@@ -350,7 +360,10 @@ private void createExecute(WorkflowRequest request, User user, ActionListener<Wo
350
360
ActionListener .wrap (reprovisionResponse -> {
351
361
listener .onResponse (new WorkflowResponse (reprovisionResponse .getWorkflowId ()));
352
362
}, exception -> {
353
- String errorMessage = "Reprovisioning failed for workflow " + workflowId ;
363
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
364
+ "Reprovisioning failed for workflow {}" ,
365
+ workflowId
366
+ ).getFormattedMessage ();
354
367
logger .error (errorMessage , exception );
355
368
if (exception instanceof FlowFrameworkException ) {
356
369
listener .onFailure (exception );
@@ -382,9 +395,10 @@ private void createExecute(WorkflowRequest request, User user, ActionListener<Wo
382
395
);
383
396
listener .onResponse (new WorkflowResponse (request .getWorkflowId ()));
384
397
}, exception -> {
385
- String errorMessage = "Failed to update workflow "
386
- + request .getWorkflowId ()
387
- + " in template index" ;
398
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
399
+ "Failed to update workflow {} in template index" ,
400
+ request .getWorkflowId ()
401
+ ).getFormattedMessage ();
388
402
logger .error (errorMessage , exception );
389
403
if (exception instanceof FlowFrameworkException ) {
390
404
listener .onFailure (exception );
@@ -399,7 +413,10 @@ private void createExecute(WorkflowRequest request, User user, ActionListener<Wo
399
413
listener .onResponse (new WorkflowResponse (request .getWorkflowId ()));
400
414
}
401
415
}, exception -> {
402
- String errorMessage = "Failed to update use case template " + request .getWorkflowId ();
416
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
417
+ "Failed to update use case template {}" ,
418
+ request .getWorkflowId ()
419
+ ).getFormattedMessage ();
403
420
logger .error (errorMessage , exception );
404
421
if (exception instanceof FlowFrameworkException ) {
405
422
listener .onFailure (exception );
@@ -411,12 +428,18 @@ private void createExecute(WorkflowRequest request, User user, ActionListener<Wo
411
428
);
412
429
}
413
430
} else {
414
- String errorMessage = "Failed to retrieve template (" + workflowId + ") from global context." ;
431
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
432
+ "Failed to retrieve template ({}) from global context." ,
433
+ workflowId
434
+ ).getFormattedMessage ();
415
435
logger .error (errorMessage );
416
436
listener .onFailure (new FlowFrameworkException (errorMessage , RestStatus .NOT_FOUND ));
417
437
}
418
438
}, exception -> {
419
- String errorMessage = "Failed to retrieve template (" + workflowId + ") from global context." ;
439
+ String errorMessage = ParameterizedMessageFactory .INSTANCE .newMessage (
440
+ "Failed to retrieve template ({}) from global context." ,
441
+ workflowId
442
+ ).getFormattedMessage ();
420
443
logger .error (errorMessage , exception );
421
444
listener .onFailure (new FlowFrameworkException (errorMessage , ExceptionsHelper .status (exception )));
422
445
}));
0 commit comments