mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Enable docker build in CI pipeline (#15476)
* Update gulpfile.reh.js * Update YAML files * Bump distro * Fix yaml file * Another yaml typo * Disable web publish step * Update the build scripts * YAML update * Update distro * Update yaml * Increase step timeout * Add comment for disabled code block * Temp disable component detection task * Renable comp gov teask * Bump distro * Update build scripts * Fix typo * Fix docker path * Bump linux build timeout * Change file name
This commit is contained in:
@@ -399,10 +399,14 @@ export class RemoteTerminalChannelClient {
|
||||
}
|
||||
|
||||
public getTerminalLayoutInfo(): Promise<ITerminalsLayoutInfo | undefined> {
|
||||
const workspace = this._workspaceContextService.getWorkspace();
|
||||
const args: IGetTerminalLayoutInfoArgs = {
|
||||
workspaceId: workspace.id,
|
||||
};
|
||||
return this._channel.call<ITerminalsLayoutInfo>('$getTerminalLayoutInfo', args);
|
||||
// {{SQL CARBON EDIT}} - temp disable this code since it refers to non-implemented method
|
||||
// - currently remote code is ahead of OSS code and they need to catch-up (karlb 5/13/2021)
|
||||
|
||||
// const workspace = this._workspaceContextService.getWorkspace();
|
||||
// const args: IGetTerminalLayoutInfoArgs = {
|
||||
// workspaceId: workspace.id,
|
||||
// };
|
||||
// return this._channel.call<ITerminalsLayoutInfo>('$getTerminalLayoutInfo', args);
|
||||
return Promise.resolve(undefined);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user