mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
fix rename request handler (#1944)
This commit is contained in:
@@ -26,6 +26,6 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement.Contracts
|
||||
}
|
||||
public class RenameRequest
|
||||
{
|
||||
public static readonly RequestType<RenameRequestParams, bool> Type = RequestType<RenameRequestParams, bool>.Create("objectmanagement/rename");
|
||||
public static readonly RequestType<RenameRequestParams, bool> Type = RequestType<RenameRequestParams, bool>.Create("objectManagement/rename");
|
||||
}
|
||||
}
|
||||
@@ -62,7 +62,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
Logger.Verbose("Handle Request in HandleProcessRenameEditRequest()");
|
||||
ConnectionInfo connInfo;
|
||||
|
||||
if (connectionService.TryFindConnection(
|
||||
if (ConnectionServiceInstance.TryFindConnection(
|
||||
requestParams.ConnectionUri,
|
||||
out connInfo))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user