chore: Fix org name in explicitly-skipped megarepo (#28698)

https://github.com/sourcegraph/sourcegraph/pull/28694#discussion_r764315180
This commit is contained in:
Eric Fritz 2021-12-07 15:20:23 -06:00 committed by GitHub
parent c4d908adc9
commit 0ebc7fab2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ func (f *repositoryFetcher) FetchRepositoryArchive(ctx context.Context, args typ
requestCh := make(chan parseRequestOrError)
// Just skip this repo as it's clogging the pipes in Cloud
if string(args.Repo) == "github.com/sourcegraph/megarepo" {
if string(args.Repo) == "github.com/sgtest/megarepo" {
close(requestCh)
return requestCh
}