소스 검색

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) {

불러오는 중...
취소
저장