Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
||||
// @flow
|
||||
|
||||
import Logger from '../Logger';
|
||||
import {
|
||||
createGlobalProxyAgent,
|
||||
} from '../factories';
|
||||
import type {
|
||||
ProxyAgentConfigurationInputType,
|
||||
} from '../types';
|
||||
|
||||
const log = Logger.child({
|
||||
namespace: 'bootstrap',
|
||||
});
|
||||
|
||||
export default (configurationInput?: ProxyAgentConfigurationInputType): boolean => {
|
||||
if (global.GLOBAL_AGENT) {
|
||||
log.warn('found global.GLOBAL_AGENT; second attempt to bootstrap global-agent was ignored');
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
global.GLOBAL_AGENT = createGlobalProxyAgent(configurationInput);
|
||||
|
||||
return true;
|
||||
};
|
||||
Reference in New Issue
Block a user