-
Notifications
You must be signed in to change notification settings - Fork 434
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
Collecting MongoDB Serverless clusters #648
Conversation
v3.0.7 release 🚀
Hey @AnnuCode , the PR itself looks fine. We need to do some rebasing on our master, after which you need to rebase too. Then we can merge. I'll ping you once we fixed on our side 👍 |
@AnnuCode please rebase your fork/PR to most recent master and we should be good to go 👍 |
@eneskaya just to confirm, will this be the right command to do so? |
Hmm I'm not 100% sure how it works with forked repos. So here's what I would do. |
@eneskaya after doing |
You may need to sync with the main repository first: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork |
@eneskaya Is it possible that my past PR made by a previous fork(now deleted) is causing issues? Attaching few photos to show the conflict: |
Yeah the problem is that we needed to get rid of these two commits that you're seeing on the last screenshot. What happens when you press "Sync Fork" on the second screenshot? |
@eneskaya It says this branch is not behind the upstream tailward:master |
@eneskaya After the commands, things went like this: |
Ah yes sorry for the misunderstanding. After doing the |
Signed-off-by: Annu Singh <[email protected]>
Signed-off-by: Annu Singh <[email protected]>
@eneskaya After |
You need to |
@AnnuCode Ugh, the rebasing on your feature branch didn't remove the faulty commit... Please, on your |
@eneskaya Done :) Thank you so much for all the help! I almost took a full lesson in Git from you here 😄 |
@eneskaya Should I update the branch as well? |
Let's not mess up anything here last minute 😂 I'll merge once the checks are green ✅ EDIT: nvm, had to update of course before merging :) |
Problem
Missing collection of MongoDB Atlas Serverless clusters.
Solution
Created a new
serverless
package to collect all the MongoDB Atlas Serverless clusters.Changes Made
serverless
package added in the mongdbatlas providers.NormalizeRegionNames
function moved toutils
package in theregions.go
file and imported from there to be used inserverless
andclusters
packages.utils_test.go
created which tests theNormalizeRegionNames
function.Checklist
Reviewers
@eneskaya