Page MenuHomePhabricator

D10324.diff
No OneTemporary

D10324.diff

diff --git a/src/workflow/ArcanistCommitWorkflow.php b/src/workflow/ArcanistCommitWorkflow.php
--- a/src/workflow/ArcanistCommitWorkflow.php
+++ b/src/workflow/ArcanistCommitWorkflow.php
@@ -160,6 +160,8 @@
throw new Exception("Executing 'svn commit' failed!");
}
+ $this->askForRepositoryUpdate();
+
$mark_workflow = $this->buildChildWorkflow(
'close-revision',
array(
diff --git a/src/workflow/ArcanistLandWorkflow.php b/src/workflow/ArcanistLandWorkflow.php
--- a/src/workflow/ArcanistLandWorkflow.php
+++ b/src/workflow/ArcanistLandWorkflow.php
@@ -1035,23 +1035,7 @@
$cmd));
}
- // If we know which repository we're in, try to tell Phabricator that we
- // pushed commits to it so it can update. This hint can help pull updates
- // more quickly, especially in rarely-used repositories.
- if ($this->getRepositoryCallsign()) {
- try {
- $this->getConduit()->callMethodSynchronous(
- 'diffusion.looksoon',
- array(
- 'callsigns' => array($this->getRepositoryCallsign()),
- ));
- } catch (ConduitClientException $ex) {
- // If we hit an exception, just ignore it. Likely, we are running
- // against a Phabricator which is too old to support this method.
- // Since this hint is purely advisory, it doesn't matter if it has
- // no effect.
- }
- }
+ $this->askForRepositoryUpdate();
$mark_workflow = $this->buildChildWorkflow(
'close-revision',
diff --git a/src/workflow/ArcanistWorkflow.php b/src/workflow/ArcanistWorkflow.php
--- a/src/workflow/ArcanistWorkflow.php
+++ b/src/workflow/ArcanistWorkflow.php
@@ -1839,4 +1839,34 @@
"Arcanist config to specify a command to use."));
}
+
+ /**
+ * Ask Phabricator to update the current repository as soon as possible.
+ *
+ * Calling this method after pushing commits allows Phabricator to discover
+ * the commits more quickly, so the system overall is more responsive.
+ *
+ * @return void
+ */
+ protected function askForRepositoryUpdate() {
+ // If we know which repository we're in, try to tell Phabricator that we
+ // pushed commits to it so it can update. This hint can help pull updates
+ // more quickly, especially in rarely-used repositories.
+ if ($this->getRepositoryCallsign()) {
+ try {
+ $this->getConduit()->callMethodSynchronous(
+ 'diffusion.looksoon',
+ array(
+ 'callsigns' => array($this->getRepositoryCallsign()),
+ ));
+ } catch (ConduitClientException $ex) {
+ // If we hit an exception, just ignore it. Likely, we are running
+ // against a Phabricator which is too old to support this method.
+ // Since this hint is purely advisory, it doesn't matter if it has
+ // no effect.
+ }
+ }
+ }
+
+
}

File Metadata

Mime Type
text/plain
Expires
Sat, Sep 21, 1:39 PM (22 h, 2 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6625744
Default Alt Text
D10324.diff (2 KB)

Event Timeline