-
Notifications
You must be signed in to change notification settings - Fork 58
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
Add auto-suggestions for skipping index definition and export types #1552
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1552 +/- ##
==========================================
+ Coverage 57.83% 57.86% +0.02%
==========================================
Files 366 367 +1
Lines 13666 13734 +68
Branches 3573 3595 +22
==========================================
+ Hits 7904 7947 +43
- Misses 5700 5723 +23
- Partials 62 64 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
2274d7c
to
f1aef4f
Compare
return; | ||
} | ||
setSQLcode(accelerationQueryBuilder(accelerationFormData)); | ||
setIsPreviewStale(false); | ||
setIsPreviewTriggered(true); | ||
}; | ||
|
||
const checkIfSQLWorkbenchPluginIsInstalled = () => { | ||
fetch('../api/status', { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this not be http.get
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not fetching from a route rather using dashboards status API.
please resolve conflicts. |
headers: { | ||
'Content-Type': 'application/json', | ||
'osd-xsrf': 'true', | ||
'accept-language': 'en-US,en;q=0.9,zh-CN;q=0.8,zh;q=0.7,zh-TW;q=0.6', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just for my knowledge why do we need this in the header, isn't this for the .i18nrc
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's a header added to request to accept responses in different languages
Signed-off-by: Shenoy Pratik <sgguruda@amazon.com>
Signed-off-by: Shenoy Pratik <sgguruda@amazon.com>
Signed-off-by: Shenoy Pratik <sgguruda@amazon.com>
Signed-off-by: Shenoy Pratik <sgguruda@amazon.com>
f1aef4f
to
a580089
Compare
…1552) * add generate modal and status check for workbench Signed-off-by: Shenoy Pratik <sgguruda@amazon.com> * remove debug logs Signed-off-by: Shenoy Pratik <sgguruda@amazon.com> * expose types for cachemanager Signed-off-by: Shenoy Pratik <sgguruda@amazon.com> * rebase changes Signed-off-by: Shenoy Pratik <sgguruda@amazon.com> --------- Signed-off-by: Shenoy Pratik <sgguruda@amazon.com> (cherry picked from commit 6dfafbd) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
…1552) (#1569) * add generate modal and status check for workbench * remove debug logs * expose types for cachemanager * rebase changes --------- (cherry picked from commit 6dfafbd) Signed-off-by: Shenoy Pratik <sgguruda@amazon.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Shenoy Pratik <sgguruda@amazon.com>
…pensearch-project#1552) (opensearch-project#1569) * add generate modal and status check for workbench * remove debug logs * expose types for cachemanager * rebase changes --------- (cherry picked from commit 6dfafbd) Signed-off-by: Shenoy Pratik <sgguruda@amazon.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Shenoy Pratik <sgguruda@amazon.com> (cherry picked from commit dc0245f)
Description
Add auto-suggestions for skipping index definition and export types
Issues Resolved
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.