Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15425732
D20777.id49543.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D20777.id49543.diff
View Options
diff --git a/src/applications/diffusion/ssh/DiffusionGitUploadPackSSHWorkflow.php b/src/applications/diffusion/ssh/DiffusionGitUploadPackSSHWorkflow.php
--- a/src/applications/diffusion/ssh/DiffusionGitUploadPackSSHWorkflow.php
+++ b/src/applications/diffusion/ssh/DiffusionGitUploadPackSSHWorkflow.php
@@ -126,8 +126,6 @@
->setCommandChannelFromExecFuture($future)
->execute();
- $err = 1;
-
// TODO: Currently, when proxying, we do not write an event log on the
// proxy. Perhaps we should write a "proxy log". This is not very useful
// for statistics or auditing, but could be useful for diagnostics.
@@ -144,14 +142,7 @@
// the same host.
array_shift($refs);
- // Check if we have more services we can try. If we do, we'll make an
- // effort to fall back to them below. If not, we can't do anything to
- // recover so just bail out.
- if (!$refs) {
- return $err;
- }
-
- $should_retry = $this->shouldRetryRequest();
+ $should_retry = $this->shouldRetryRequest($refs);
if (!$should_retry) {
return $err;
}
@@ -168,7 +159,7 @@
return $this;
}
- private function shouldRetryRequest() {
+ private function shouldRetryRequest(array $remaining_refs) {
$this->requestFailures++;
if ($this->requestFailures > $this->requestAttempts) {
@@ -178,11 +169,11 @@
"missing call to \"didBeginRequest()\".\n"));
}
- $max_failures = 3;
- if ($this->requestFailures >= $max_failures) {
+ if (!$remaining_refs) {
$this->writeClusterEngineLogMessage(
pht(
- "# Reached maximum number of retry attempts, giving up.\n"));
+ "# All available services failed to serve the request, ".
+ "giving up.\n"));
return false;
}
@@ -208,7 +199,7 @@
pht(
"# Service request failed, retrying (making attempt %s of %s).\n",
new PhutilNumber($this->requestAttempts + 1),
- new PhutilNumber($max_failures)));
+ new PhutilNumber($this->requestAttempts + count($remaining_refs))));
return true;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 5:46 AM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7383244
Default Alt Text
D20777.id49543.diff (2 KB)
Attached To
Mode
D20777: Instead of retrying safe reads 3 times, retry each eligible service once
Attached
Detach File
Event Timeline
Log In to Comment