We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25d9add + 35a3754 commit c0da918Copy full SHA for c0da918
cli/lib/gateway.js
@@ -48,16 +48,6 @@ Gateway.prototype.start = (options) => {
48
return console.log('Error downloading configuration. Gateway not started. Reason: ', err.message);
49
} else {
50
51
- //inject the apidEndpoint to analytics plugin config
52
- if(options.apidEndpoint && config['analytics-apid']) {
53
- config['analytics-apid'].apidEndpoint = options.apidEndpoint;
54
- }
55
-
56
- //inject the apidEndpoint to verify api key
57
- if(options.apidEndpoint && config['verify-api-key']) {
58
- config['verify-api-key'].apidEndpoint = options.apidEndpoint;
59
60
61
process.env.CONFIG = JSON.stringify(config);
62
63
}
0 commit comments