(
- new ParameterOverride(
- "failedPackWaitTimeBeforeExecution",
- new NamedArguments.FailedPackWaitTimeBeforeExecution(TimeSpan.FromSeconds(0)))); // on start up set time to wait = 0 so that recovery for all waiting packs is attempted
-
- try
- {
- recoveryProcess.RecoverAll();
- }
- catch
- {
- // don't let a failed recovery attempt stop start-up process
- }
- finally
- {
- if (recoveryProcess != null)
- {
- container.Teardown(recoveryProcess);
- }
- }
- }
- }
-
-
protected void Application_Error(object sender, EventArgs e)
{
Exception exception = Server.GetLastError();
diff --git a/Bonobo.Git.Server/Views/Repository/Detail.cshtml b/Bonobo.Git.Server/Views/Repository/Detail.cshtml
index bece77225..242d5dee3 100644
--- a/Bonobo.Git.Server/Views/Repository/Detail.cshtml
+++ b/Bonobo.Git.Server/Views/Repository/Detail.cshtml
@@ -75,19 +75,17 @@
@Html.LabelFor(m => m.LinksUrl)
@Html.TextBoxFor(m => m.LinksUrl, new { @readonly=""})
- @if (AppSettings.IsPushAuditEnabled) {
-
- @Html.LabelFor(m => m.AuditPushUser)
- @if (Model.AuditPushUser)
- {
- @Resources.Repository_Detail_Yes
- }
- else
- {
- @Resources.Repository_Detail_No
- }
-
- }
+
+ @Html.LabelFor(m => m.AuditPushUser)
+ @if (Model.AuditPushUser)
+ {
+ @Resources.Repository_Detail_Yes
+ }
+ else
+ {
+ @Resources.Repository_Detail_No
+ }
+
@Html.LabelFor(m => m.Users)
@for (int i = 0; i < Model.Users.Length; i++)
diff --git a/Bonobo.Git.Server/Views/Repository/Edit.cshtml b/Bonobo.Git.Server/Views/Repository/Edit.cshtml
index 2c3d32337..2cc28c108 100644
--- a/Bonobo.Git.Server/Views/Repository/Edit.cshtml
+++ b/Bonobo.Git.Server/Views/Repository/Edit.cshtml
@@ -73,15 +73,11 @@ else
@Html.EnumDropDownListFor(m => m.AllowAnonymousPush, attribs)
-
- @if (AppSettings.IsPushAuditEnabled)
- {
-
- @Html.LabelFor(m => m.AuditPushUser)
- @Html.CheckBoxFor(m => m.AuditPushUser)
-
-
- }
+
+ @Html.LabelFor(m => m.AuditPushUser)
+ @Html.CheckBoxFor(m => m.AuditPushUser)
+
+
@Html.LabelFor(m => m.LinksUseGlobal)
@Html.CheckBoxFor(m => m.LinksUseGlobal, new { @onClick = "document.getElementById('LinksRegex').disabled = this.checked; document.getElementById('LinksUrl').disabled = this.checked" })
diff --git a/Bonobo.Git.Server/web.config b/Bonobo.Git.Server/web.config
index c41892d6a..882ee3ebe 100644
--- a/Bonobo.Git.Server/web.config
+++ b/Bonobo.Git.Server/web.config
@@ -12,7 +12,6 @@
-