Skip to content

Commit 52c3316

Browse files
committed
New version: added default setting for linux system, ping time reduced to 5 (from 120)
1 parent 9c0cfc7 commit 52c3316

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

service_info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"services": {
33
"name": "RemotePythonExecution",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"projectType": "DotnetProject",
66
"dependencies": []
77
},

src/RemotePythonExecution.Services/RemotePythonExecutionService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public RemotePythonExecutionService(IServiceProvider serviceProvider)
5454
mLogger = serviceProvider.GetRequiredService<ILogger<RemotePythonExecutionService>>();
5555
mAppSettingService = serviceProvider.GetRequiredService<IAppSettingService>();
5656

57-
ParamsTcpServer paramsTcpServer = new(19000, cEndOfLineCharster);
57+
ParamsTcpServer paramsTcpServer = new(19000, cEndOfLineCharster, pingIntervalSec:5);
5858
mTcpNetServer = new TcpNETServer(paramsTcpServer);
5959
mTcpNetServer.StartAsync();
6060

src/RemotePythonExecution/RemotePythonExecution.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>disable</Nullable>
8-
<Version>0.0.1</Version>
8+
<Version>0.0.2</Version>
99
<IsPackable>false</IsPackable>
1010
<Title>$(SolutionName)</Title>
1111
<Authors>vertigra</Authors>

0 commit comments

Comments
 (0)