diff options
author | Kuang-che Wu <kcwu@google.com> | 2025-07-25 16:10:41 +0800 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2025-07-28 02:05:24 -0700 |
commit | d3eec0acdd856e54747494465a33ebf72f321cb1 (patch) | |
tree | bafbfaaf1deb8f1e1a0f95d6d5d1e40c4b45c2b1 | |
parent | 7f7d70efe4c490a4df8597e04aca7d7e198b8e9b (diff) | |
download | git-repo-d3eec0acdd856e54747494465a33ebf72f321cb1.tar.gz |
sync: fix connection error on macOS for interleaved sync
Bug: 377538810
Test: on macos, repo sync -j64
Change-Id: I6af4d4e6669dc882f165cbb9142ad4db9b346b73
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/494241
Reviewed-by: Gavin Mak <gavinmak@google.com>
Commit-Queue: Kuang-che Wu <kcwu@google.com>
Tested-by: Kuang-che Wu <kcwu@google.com>
-rw-r--r-- | subcmds/sync.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index c0310c56..41b8bb03 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -2582,6 +2582,7 @@ later is required to fix a server side protocol bug. | |||
2582 | callback=callback, | 2582 | callback=callback, |
2583 | output=pm, | 2583 | output=pm, |
2584 | chunksize=1, | 2584 | chunksize=1, |
2585 | initializer=self.InitWorker, | ||
2585 | ): | 2586 | ): |
2586 | err_event.set() | 2587 | err_event.set() |
2587 | 2588 | ||