Create Signaler for easier usage of Signaler pattern Create Signaler for easier usage of Signaler pattern which reduces unexpected error for instance by using a BehaviorSubject instead of a PublishSubject
ride changes observable The ride changes, which are emitted from the Firebase RTD, notify our RideChangeObserver. The observer doesn't had any onError handling for it. Because our observer hadn't implemented any error handling the app crashes if, for instance, we have a poor internet connection. Now I added the error handling in the following way: • Error raise • Catch error and unsubscribe • Subscribe again to get notified over Firebase changes again I decided to fix this in this way because .... Resolves: #123
ride changes observable The ride changes, which are emitted from the Firebase RTD, notify our RideChangeObserver. The observer doesn't had any onError handling for it. Because our observer hadn't implemented any error handling the app crashes if, for instance, we have a poor internet connection. Now I added the error handling in the following way: • Error raise • Catch error and unsubscribe • Subscribe again to get notified over Firebase changes again I decided to fix this in this way because .... Resolves: #123 This is the subject line
line commit messages • Multi line isn’t worth the time to investigate in the message • Does your team do/allow rebasing in feature branches? ◦ Commit message doesn’t matter. You do a new commit anyways. • Does your team squash the merge? ◦ Maybe multi line messages on the ‘merge’ commit make sense BUT!
as possible? vs Only once if feature is finished? • Allowing of ‘Apply PR suggestions’ commits ◦ (Personal note: I really hate it!) • Do you allow multiple changes in one commit? ◦ Typo fix is part of a ‘functional implementation’ cause you just found it while doing it • … even more?!