Ben Congdon

Results 33 comments of Ben Congdon

+1 for docs relating to "updating local work on top of the remote main branch". Merging a PR and then rebasing the local branchless commits onto the new state of...

Now, I run `git fetch` and `git rebase origin/main`, and resolve any conflicts. I still run into issues occasionally with (local) branch pointers becoming out of date, and I have...

This project is not actively being maintained. That being said, what types of request errors are you seeing in the logs? I'm not sure that worker retry was ever implemented,...

It may be worth trying to configure "maxConcurrency" ([ref](https://github.com/bcongdon/corral/blob/master/driver.go#L56)) to a lower value. It looks like the [default is 500](https://github.com/bcongdon/corral/blob/1f4ad49dee348922b342e57b0428420d034aec08/config.go#L31), which may be too high, in retrospect. As for `unexpected...

What error message are you getting?

Thanks for your response, unfortunately it doesn't look like the image made its way to Github. Could you post it there directly? (Or even better, just copy/paste the message?)

This error makes it look the preamble (e.g. the `package` and `import`s were deleted). ``` ./word_count.go:4:57: error: expected package 4 | func (w wordCount) Map(key, value string, emitter corral.Emitter) {...

Ah, I see. That makes a lot more sense now, thanks for the clarification!

I'd be in favor of putting an explanation like that in the README. Probably not in favor of checking it in, as -- like you said -- that puts you...