Skip to content

Commit c13c8ee

Browse files
removed legacy options
1 parent b72f5d7 commit c13c8ee

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/tunnel_binary.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ function TunnelBinary(httpTunnelConfig, options) {
1717
* Try to find out binary based on platform arch.
1818
*/
1919
this.binaryVersion = 'v3';
20-
if (options['legacy']) {
21-
this.binaryVersion = 'v2';
22-
executableName = 'ltcomponent';
23-
}
20+
// if (options['legacy']) {
21+
// this.binaryVersion = 'v2';
22+
// executableName = 'ltcomponent';
23+
// }
2424
this.httpTunnelConfig = httpTunnelConfig;
2525
this.hostOS = process.platform;
2626
this.bits = process.arch === 'x64' || process.arch === 'arm64' ? '64bit' : '32bit';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambdatest/node-tunnel",
3-
"version": "3.0.6",
3+
"version": "3.0.7",
44
"description": "Nodejs bindings for LambdaTest Tunnel",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)