-
Notifications
You must be signed in to change notification settings - Fork 66
[AUTOCUT] Distribution Build Failed for anomalyDetectionDashboards-2.15.0 #765
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
|
@peterzhuamazon will downgrade the version on AD side. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
This PR finalizes the frontend changes related to PR #1225. The custom result index query now uses an index pattern instead of a single index. Additionally, this PR addresses an issue where missing custom result indices would appear because the original code checked for the existence of an index name, but now we use it as a prefix. We have updated the logic to perform a prefix search instead of checking for index name equality. This PR also resolves issue opensearch-project#765 by downgrading the version of jest-canvas-mock. Testing Done: * Added unit tests. * Verified that the custom result index missing callout is not shown. * Confirmed that the frontend can still display old and new results after a rollover. Signed-off-by: Kaituo Li <[email protected]>
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards. |
This PR finalizes the frontend changes related to PR #1225. The custom result index query now uses an index pattern instead of a single index. Additionally, this PR addresses an issue where missing custom result indices would appear because the original code checked for the existence of an index name, but now we use it as a prefix. We have updated the logic to perform a prefix search instead of checking for index name equality. This PR also resolves issue opensearch-project#765 by downgrading the version of jest-canvas-mock. Testing Done: * Added unit tests. * Verified that the custom result index missing callout is not shown. * Confirmed that the frontend can still display old and new results after a rollover. Signed-off-by: Kaituo Li <[email protected]>
* Update Frontend for Custom Result Index Query and Fix Issues This PR finalizes the frontend changes related to PR #1225. The custom result index query now uses an index pattern instead of a single index. Additionally, this PR addresses an issue where missing custom result indices would appear because the original code checked for the existence of an index name, but now we use it as a prefix. We have updated the logic to perform a prefix search instead of checking for index name equality. This PR also resolves issue #765 by downgrading the version of jest-canvas-mock. Testing Done: * Added unit tests. * Verified that the custom result index missing callout is not shown. * Confirmed that the frontend can still display old and new results after a rollover. Signed-off-by: Kaituo Li <[email protected]> * change to check alias Signed-off-by: Kaituo Li <[email protected]> * fix warning msg Signed-off-by: Kaituo Li <[email protected]> --------- Signed-off-by: Kaituo Li <[email protected]>
* Update Frontend for Custom Result Index Query and Fix Issues This PR finalizes the frontend changes related to PR #1225. The custom result index query now uses an index pattern instead of a single index. Additionally, this PR addresses an issue where missing custom result indices would appear because the original code checked for the existence of an index name, but now we use it as a prefix. We have updated the logic to perform a prefix search instead of checking for index name equality. This PR also resolves issue #765 by downgrading the version of jest-canvas-mock. Testing Done: * Added unit tests. * Verified that the custom result index missing callout is not shown. * Confirmed that the frontend can still display old and new results after a rollover. Signed-off-by: Kaituo Li <[email protected]> * change to check alias Signed-off-by: Kaituo Li <[email protected]> * fix warning msg Signed-off-by: Kaituo Li <[email protected]> --------- Signed-off-by: Kaituo Li <[email protected]> (cherry picked from commit 6513e1b)
…774) * Update Frontend for Custom Result Index Query and Fix Issues This PR finalizes the frontend changes related to PR #1225. The custom result index query now uses an index pattern instead of a single index. Additionally, this PR addresses an issue where missing custom result indices would appear because the original code checked for the existence of an index name, but now we use it as a prefix. We have updated the logic to perform a prefix search instead of checking for index name equality. This PR also resolves issue #765 by downgrading the version of jest-canvas-mock. Testing Done: * Added unit tests. * Verified that the custom result index missing callout is not shown. * Confirmed that the frontend can still display old and new results after a rollover. Signed-off-by: Kaituo Li <[email protected]> * change to check alias Signed-off-by: Kaituo Li <[email protected]> * fix warning msg Signed-off-by: Kaituo Li <[email protected]> --------- Signed-off-by: Kaituo Li <[email protected]> (cherry picked from commit 6513e1b) Co-authored-by: Kaituo Li <[email protected]>
Closing the issue as the distribution build for anomalyDetectionDashboards has passed for version: 2.15.0. |
Received Error: Error building anomalyDetectionDashboards, retry with: ./build.sh manifests/2.15.0/opensearch-dashboards-2.15.0.yml --component anomalyDetectionDashboards.
anomalyDetectionDashboards failed during the distribution build for version: 2.15.0.
Please see build log at https://build.ci.opensearch.org/job/distribution-build-opensearch-dashboards/7680/display/redirect.
The failed build stage will be marked as unstable(!). Please see ./build.sh step for more details
The text was updated successfully, but these errors were encountered: