mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
ADS changes for opening XEL files (#23666)
* Initial set of changes for opening XEL files in ADS * Code cleanup and update STS version * Fix runtime errors * Address comments * Address comments and update Start button to be disabled for file session * Code cleanup
This commit is contained in:
@@ -1001,10 +1001,11 @@ export class ProfilerFeature extends SqlOpsFeature<undefined> {
|
||||
);
|
||||
};
|
||||
|
||||
let startSession = (ownerUri: string, sessionName: string): Thenable<boolean> => {
|
||||
let startSession = (ownerUri: string, sessionName: string, sessionType: azdata.ProfilingSessionType = azdata.ProfilingSessionType.RemoteSession): Thenable<boolean> => {
|
||||
let params: contracts.StartProfilingParams = {
|
||||
ownerUri,
|
||||
sessionName
|
||||
sessionName,
|
||||
sessionType
|
||||
};
|
||||
|
||||
return client.sendRequest(contracts.StartProfilingRequest.type, params).then(
|
||||
|
||||
Reference in New Issue
Block a user