Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for buildFailureMessage (0.14 seconds)

  1. src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java

                    final BulkResponse response = bulkRequest.execute().actionGet(30_000L);
                    if (response.hasFailures()) {
                        logger.warn("Failed to write log notifications: {}", response.buildFailureMessage());
                    }
                }
            } catch (final Exception e) {
                logger.debug("Failed to flush log notifications to OpenSearch.", e);
            }
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        } else if (logger.isDebugEnabled()) {
                            logger.debug("Skipped existing documents in {}", dataPath);
                        }
                    } else {
                        logger.warn("Failed to register {}: {}", dataPath, response.buildFailureMessage());
                    }
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top