mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 12:11:09 +00:00
bug(cli): Prefer IPv4 dns resolution by default. (#5338)
This commit is contained in:
parent
786750b1b5
commit
e5ce7d4872
4 changed files with 108 additions and 1 deletions
|
|
@ -38,6 +38,8 @@ export function getSystemSettingsPath(): string {
|
|||
}
|
||||
}
|
||||
|
||||
export type DnsResolutionOrder = 'ipv4first' | 'verbatim';
|
||||
|
||||
export enum SettingScope {
|
||||
User = 'User',
|
||||
Workspace = 'Workspace',
|
||||
|
|
@ -110,6 +112,7 @@ export interface Settings {
|
|||
disableAutoUpdate?: boolean;
|
||||
|
||||
memoryDiscoveryMaxDirs?: number;
|
||||
dnsResolutionOrder?: DnsResolutionOrder;
|
||||
}
|
||||
|
||||
export interface SettingsError {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue