Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15426791
D10292.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
D10292.diff
View Options
diff --git a/src/applications/harbormaster/controller/HarbormasterBuildActionController.php b/src/applications/harbormaster/controller/HarbormasterBuildActionController.php
--- a/src/applications/harbormaster/controller/HarbormasterBuildActionController.php
+++ b/src/applications/harbormaster/controller/HarbormasterBuildActionController.php
@@ -74,21 +74,21 @@
case HarbormasterBuildCommand::COMMAND_RESTART:
if ($can_issue) {
$title = pht('Really restart build?');
- $body = pht(
- 'Progress on this build will be discarded and the build will '.
- 'restart. Side effects of the build will occur again. Really '.
- 'restart build?');
- $submit = pht('Restart Build');
- } else {
- $title = pht('Unable to Restart Build');
if ($build->isRestarting()) {
$body = pht(
- 'This build is already restarting. You can not reissue a '.
- 'restart command to a restarting build.');
+ 'This build is already restarting. Really '.
+ 'restart build?');
} else {
$body = pht(
- 'You can not restart this build.');
+ 'Progress on this build will be discarded and the build will '.
+ 'restart. Side effects of the build will occur again. Really '.
+ 'restart build?');
}
+ $submit = pht('Restart Build');
+ } else {
+ $title = pht('Unable to Restart Build');
+ $body = pht(
+ 'You can not restart this build.');
}
break;
case HarbormasterBuildCommand::COMMAND_STOP:
diff --git a/src/applications/harbormaster/storage/build/HarbormasterBuild.php b/src/applications/harbormaster/storage/build/HarbormasterBuild.php
--- a/src/applications/harbormaster/storage/build/HarbormasterBuild.php
+++ b/src/applications/harbormaster/storage/build/HarbormasterBuild.php
@@ -305,7 +305,7 @@
}
public function canRestartBuild() {
- return !$this->isRestarting();
+ return true;
}
public function canStopBuild() {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 10:51 AM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7479833
Default Alt Text
D10292.diff (2 KB)
Attached To
Mode
D10292: Allow users to restart builds at any time
Attached
Detach File
Event Timeline
Log In to Comment