config: default false

Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
This commit is contained in:
Christopher Phillips 2026-06-30 22:49:20 -04:00
parent 16ac0f0628
commit 7050c09094
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ func DefaultCatalogerConfig() CatalogerConfig {
UsePackagesLib: true,
MainModuleVersion: DefaultMainModuleVersionConfig(),
LocalModCacheDir: defaultGoModDir(),
CaptureSymbols: true,
CaptureSymbols: false,
}
// first process the proxy settings

View File

@ -58,7 +58,7 @@ func Test_Config(t *testing.T) {
NoProxy: []string{"my.private", "no.proxy"},
MainModuleVersion: DefaultMainModuleVersionConfig(),
UsePackagesLib: true,
CaptureSymbols: true,
CaptureSymbols: false,
},
},
{
@ -87,7 +87,7 @@ func Test_Config(t *testing.T) {
NoProxy: []string{"alt.no.proxy"},
MainModuleVersion: DefaultMainModuleVersionConfig(),
UsePackagesLib: true,
CaptureSymbols: true,
CaptureSymbols: false,
},
},
}