Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for grein (0.12 sec)

  1. src/main/config/openapi/openapi-user.yaml

                    properties:
                      data:
                        type: object
                        properties:
                          status:
                            type: string
                            example: green
                          timed_out:
                            type: boolean
                            example: false
            '400':
              $ref: '#/components/responses/BadRequest'
            '401':
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            FessSystemException cause = null;
            for (int i = 0; i < maxConfigSyncStatusRetry; i++) {
                try (CurlResponse response = ComponentUtil.getCurlHelper().get("/_configsync/wait").param("status", "green").execute()) {
                    final int httpStatusCode = response.getHttpStatusCode();
                    if (httpStatusCode == 200) {
                        logger.info("ConfigSync is ready.");
                        return;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top