Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected If git pull returns merge errors

...

  • Fix scheduledb to work again

Discussion items

ItemWhoNotes
mongo service
 frontend service

Ralph A. Navarro Jr.

Paul Scheidemantel

How to see the code changes for mongo healthcheck
  • Checkout the scheduledb branch
    git checkout scheduledb
  • Get the latest changes from remote repository
    git pull
  • git log
  • List changes made in the today's mongo healthcheck commit
    git diff <previous commit hash> <current commit hash>
    git diff a4d6156a05d1dda86916c4e9efacb16939ab48d4 1ad1b934c663fc682e4a3ad462f224299fb913d9
If git pull returns merge errors
  • See what files have changed
    git
log
  • status
  • Stash any changes made to files
    git stash
  • Pull the latest changes from the remote repo
    git pull
  • Apply the stashed changes
    git stash apply

Action items

  •  Ralph A. Navarro Jr.  scheduledb: backend service: Implement Docker Healthcheck
  •  Paul Scheidemantel: Upgrade frontend to utilize Angular 10

...