Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 66f1a26

Browse files
committed
remove Docker lang server management
Automatic management (start/stop/update/status/etc.) of language server Docker containers is being removed in favor of providing language support via Sourcegraph extensions. Many of those extensions will, in turn, rely on language servers for analysis, but that is beyond Sourcegraph's concern. In the future, however, we will add back a way for Sourcegraph extensions to ask the server to run a Docker image and make it available to the extension, to make that common case easy. This commit DOES NOT update the docs to reflect the removal of Docker lang server management because those steps are still valid for the last release. Before releasing 3.0-preview, the docs need to be updated to reflect the new way to get language support.
1 parent 782aaad commit 66f1a26

File tree

27 files changed

+194
-3366
lines changed

27 files changed

+194
-3366
lines changed

cmd/frontend/graphqlbackend/langservers.go

Lines changed: 0 additions & 325 deletions
This file was deleted.

cmd/frontend/graphqlbackend/repository_mirror.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func (r *repositoryMirrorInfoResolver) CloneProgress(ctx context.Context) (*stri
8888
if err != nil {
8989
return nil, err
9090
}
91-
return nullString(info.CloneProgress), nil
91+
return strptr(info.CloneProgress), nil
9292
}
9393

9494
func (r *repositoryMirrorInfoResolver) UpdatedAt(ctx context.Context) (*string, error) {

0 commit comments

Comments
 (0)