浏览代码

Avoids hang with Live Share

main
Eric Amodio 1年前
父节点
当前提交
bdd3f36f60
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/container.ts

+ 2
- 1
src/container.ts 查看文件

@ -297,7 +297,8 @@ export class Container {
this._disposables.push(this._git.register(provider.descriptor.id, provider));
}
await this._git.registrationComplete();
// Don't wait here otherwise will we deadlock in certain places
void this._git.registrationComplete();
}
private onAnyConfigurationChanged(e: ConfigurationChangeEvent) {

正在加载...
取消
保存