Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15439196
D19778.id47244.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
D19778.id47244.diff
View Options
diff --git a/src/applications/diffusion/ssh/DiffusionGitReceivePackSSHWorkflow.php b/src/applications/diffusion/ssh/DiffusionGitReceivePackSSHWorkflow.php
--- a/src/applications/diffusion/ssh/DiffusionGitReceivePackSSHWorkflow.php
+++ b/src/applications/diffusion/ssh/DiffusionGitReceivePackSSHWorkflow.php
@@ -30,7 +30,7 @@
if ($this->shouldProxy()) {
$command = $this->getProxyCommand(true);
- $did_synchronize = false;
+ $did_write = false;
if ($device) {
$this->writeClusterEngineLogMessage(
@@ -40,7 +40,7 @@
}
} else {
$command = csprintf('git-receive-pack %s', $repository->getLocalPath());
- $did_synchronize = true;
+ $did_write = true;
$cluster_engine->synchronizeWorkingCopyBeforeWrite();
if ($device) {
@@ -60,7 +60,7 @@
// We've committed the write (or rejected it), so we can release the lock
// without waiting for the client to receive the acknowledgement.
- if ($did_synchronize) {
+ if ($did_write) {
$cluster_engine->synchronizeWorkingCopyAfterWrite();
}
@@ -69,18 +69,23 @@
}
if (!$err) {
- $repository->writeStatusMessage(
- PhabricatorRepositoryStatusMessage::TYPE_NEEDS_UPDATE,
- PhabricatorRepositoryStatusMessage::CODE_OKAY);
$this->waitForGitClient();
- $host_wait_end = microtime(true);
+ // When a repository is clustered, we reach this cleanup code on both
+ // the proxy and the actual final endpoint node. Don't do more cleanup
+ // or logging than we need to.
+ if ($did_write) {
+ $repository->writeStatusMessage(
+ PhabricatorRepositoryStatusMessage::TYPE_NEEDS_UPDATE,
+ PhabricatorRepositoryStatusMessage::CODE_OKAY);
- $this->updatePushLogWithTimingInformation(
- $this->getClusterEngineLogProperty('writeWait'),
- $this->getClusterEngineLogProperty('readWait'),
- ($host_wait_end - $host_wait_start));
+ $host_wait_end = microtime(true);
+ $this->updatePushLogWithTimingInformation(
+ $this->getClusterEngineLogProperty('writeWait'),
+ $this->getClusterEngineLogProperty('readWait'),
+ ($host_wait_end - $host_wait_start));
+ }
}
return $err;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 27, 6:18 AM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7724324
Default Alt Text
D19778.id47244.diff (2 KB)
Attached To
Mode
D19778: Clean up the workflow for some post-push logging code
Attached
Detach File
Event Timeline
Log In to Comment