0

Do you think the "Fix one bug, two more shall take it's place" is a real thing? Have you ever experienced it?

Comments
  • 0
  • 0
    Yes,sure it is. Have experienced this many times.
  • 0
    From what I've seen, it's mostly reported but unfixed ones.. I wonder why 🤔
  • 2
    If a bug is rooted deep in the architecture, any workaround that doesn't fix the bigger problem will cause another bug.
    If you don't understand why a bug happens, but stumble across a simple hack that removes it, you can expect problems.
    But if the issue is small and well understood, there should not be additional bugs after fix the issue.
  • 1
    It depends on code architecture. If ur code have larger functions and confusing hierarchical structure where you have chain of dependant functions then it is more likely that small change will mess up everything.

    So just try to create small and independent services and functions to avoid this kind of situation otherwise you will have to spend tons of time in refactoring which is what currently I am doing 😅
  • 0
    fix those two, and voila, you just broke the whole build 😂😂
Add Comment