-
Notifications
You must be signed in to change notification settings - Fork 105
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
[Backport 2.x] fix for ERROR alert state generation in doc-level monitors #771
Conversation
Signed-off-by: Subhobrata Dey <[email protected]> (cherry picked from commit daf8c7c)
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## 2.x #771 +/- ##
============================================
+ Coverage 75.50% 75.64% +0.14%
Complexity 116 116
============================================
Files 125 125
Lines 6825 6832 +7
Branches 1023 1025 +2
============================================
+ Hits 5153 5168 +15
- Misses 1136 1138 +2
+ Partials 536 526 -10
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.3 2.3
# Navigate to the new working tree
cd .worktrees/backport-2.3
# Create a new branch
git switch --create backport/backport-771-to-2.3
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 a69d762d79498d38f1c8d48255e135836010f177
# Push it to GitHub
git push --set-upstream origin backport/backport-771-to-2.3
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.3 Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.4 2.4
# Navigate to the new working tree
cd .worktrees/backport-2.4
# Create a new branch
git switch --create backport/backport-771-to-2.4
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 a69d762d79498d38f1c8d48255e135836010f177
# Push it to GitHub
git push --set-upstream origin backport/backport-771-to-2.4
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.4 Then, create a pull request where the |
Signed-off-by: Subhobrata Dey <[email protected]> (cherry picked from commit a69d762)
…) (#772) Signed-off-by: Subhobrata Dey <[email protected]> (cherry picked from commit a69d762) Co-authored-by: opensearch-trigger-bot[bot] <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com>
Backport daf8c7c from #768