Skip to content

Commit 88b1d7a

Browse files
Dharmishtha PatelDharmishtha Patel
authored andcommitted
Refactor
1 parent 805b70c commit 88b1d7a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/ServiceControl.Config/UI/AdvancedOptions/ServiceControlAdvancedView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@
5454
Visibility="{Binding InMaintenanceMode, Converter={StaticResource boolToVis}}"
5555
Margin="0,0,0,20"
5656
>
57-
This instance is in database maintenance mode. All message processing is disabled and the REST API is unavailable.<LineBreak />ServicePulse and ServiceInsight cannot connect to this instance while it is in maintenance mode.<LineBreak />Launch <Hyperlink Command="{Binding OpenUrl}" CommandParameter="{Binding RavenStudioUrl}">
57+
This instance is in database maintenance mode. All message processing is disabled and the REST API is unavailable.<LineBreak />ServicePulse and ServiceInsight cannot connect to this instance while it is in maintenance mode.<LineBreak />Launch <Hyperlink Command="{Binding OpenUrl}" CommandParameter="{Binding RavenDbStudioUrl}">
5858
RavenDB Management Studio
5959
<Hyperlink.ContextMenu>
6060
<ContextMenu>
6161
<MenuItem Command="{Binding CopyToClipboard}"
62-
CommandParameter="{Binding RavenStudioUrl}"
62+
CommandParameter="{Binding RavenDbStudioUrl}"
6363
Header="Copy to Clipboard" />
6464
</ContextMenu>
6565
</Hyperlink.ContextMenu>

src/ServiceControl.Config/UI/AdvancedOptions/ServiceControlAdvancedViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ForceUpgradeAuditInstanceCommand forceUpgradeAuditCommand
8181

8282
public bool InMaintenanceMode => ServiceControlInstance.InMaintenanceMode;
8383

84-
public string RavenStudioUrl => ServiceControlInstance.RavenStudioUrl;
84+
public string RavenStudioUrl => ServiceControlInstance.RavenDbStudioUrl;
8585

8686
public bool IsRunning
8787
{

src/ServiceControlInstaller.Engine/Instances/ServiceControlBaseService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected ServiceControlBaseService(IWindowsServiceController service)
2929
public bool InMaintenanceMode { get; set; }
3030
public ReportCard ReportCard { get; set; }
3131

32-
public string RavenStudioUrl
32+
public string RavenDbStudioUrl
3333
{
3434
get
3535
{

0 commit comments

Comments
 (0)