←back to thread

462 points jakevoytko | 2 comments | | HN request time: 0.422s | source
Show context
cellular ◴[] No.43489992[source]
If this was a regression, could a binary search be done on check-ins? Or is the code too distributed?
replies(1): >>43490111 #
kccqzy ◴[] No.43490111[source]
I suppose the Google Doc team initially thought this would surely be a bug in their own code, not in Chrome or in V8, so it wouldn't help to bisect their own code. Nobody really begins to debug by blaming the compiler.
replies(1): >>43490177 #
toast0 ◴[] No.43490177[source]
I mean...

> It didn’t correspond to a Google Docs release. The stack trace added very little information. There wasn’t an associated spike in user complaints, so we weren’t even sure it was really happening — but if it was happening it would be really bad. It was Chrome-only starting at a specific release.

That sounds like a Chrome bug. Or, at least, a bug triggered by a change in Chrome. Bisecting your code when their change reveals a crash is folly, regardless of whose bug it is.

replies(1): >>43492063 #
1. onli ◴[] No.43492063[source]
Not if it your job to solve the situation. It's not like it would be an easier task to dig into chrome and find the issue there.
replies(1): >>43494851 #
2. toast0 ◴[] No.43494851[source]
If your job is to solve the situation, your best hope is to figure out what change caused it; understand that change; and then do whatever needs to be done.

In a large complicated application where a change to the environment revealed a crash, finding out what changed in the environment and thinking about how that affects the application makes a lot more sense than going back through application changes to see if you can find it that way.

Once you figure out what the problem is, sure you can probably fix it in the application or the environment, and fixing the application is often easier if the environment is Chrome. But chrome changed and my app is broken means look at the changes in Chrome and work from there.