Skip to content

Commit ecef011

Browse files
author
lith
committed
auto commit 1.3.10
1 parent 79518f3 commit ecef011

10 files changed

Lines changed: 25 additions & 51 deletions

File tree

02.Gateway/ServiceAdaptor.NetCore.Gateway/ServiceAdaptor.NetCore.Gateway.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<PropertyGroup>
99
<TargetFramework>netcoreapp2.1</TargetFramework>
10-
<Version>1.3.9</Version>
10+
<Version>1.3.10</Version>
1111
</PropertyGroup>
1212

1313
<PropertyGroup>

02.Gateway/ServiceAdaptor.NetCore.Gateway/appsettings.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,7 @@
140140
/* 命名管道名称。例如: "Sers.CL.Ipc" */
141141
"pipeName": "Sers.CL.Ipc.4501",
142142
/* 连接秘钥,用以验证连接安全性。服务端和客户端必须一致 */
143-
"secretKey": "SersCL",
144-
145-
/* 请求超时时间(单位ms,默认60000) */
146-
"requestTimeoutMs": 3600000
143+
"secretKey": "SersCL"
147144
},
148145
{
149146
// Socket.Iocp
@@ -157,10 +154,7 @@
157154
/* 服务端 监听端口号。例如: 4501 */
158155
"port": 4501,
159156
/* 连接秘钥,用以验证连接安全性。服务端和客户端必须一致 */
160-
"secretKey": "SersCL",
161-
162-
/* 请求超时时间(单位ms,默认60000) */
163-
"requestTimeoutMs": 3600000
157+
"secretKey": "SersCL"
164158
}
165159
]
166160
},
@@ -172,7 +166,7 @@
172166
//"PrintTrace": true,
173167

174168
"workThread": {
175-
/* 后台处理消息的线程个数(单位个,默认16)(0代表不开启服务) */
169+
/* 后台服务的线程个数(单位个,默认16)(0代表不开启服务) */
176170
"threadCount": 16
177171
}
178172
},

11.ServiceProvider/ServiceProvider/appsettings.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,7 @@
9797
/* 命名管道名称。例如: "Sers.CL.Ipc" */
9898
"pipeName": "Sers.CL.Ipc.4501",
9999
/* 连接秘钥,用以验证连接安全性。服务端和客户端必须一致 */
100-
"secretKey": "SersCL",
101-
102-
/* 请求超时时间(单位ms,默认60000) */
103-
"requestTimeoutMs": 3600000
100+
"secretKey": "SersCL"
104101
},
105102
{
106103
// Socket.Iocp
@@ -114,10 +111,7 @@
114111
/* 服务端 监听端口号。例如: 4501 */
115112
"port": 4501,
116113
/* 连接秘钥,用以验证连接安全性。服务端和客户端必须一致 */
117-
"secretKey": "SersCL",
118-
119-
/* 请求超时时间(单位ms,默认60000) */
120-
"requestTimeoutMs": 3600000
114+
"secretKey": "SersCL"
121115
}
122116
]
123117
},
@@ -129,14 +123,14 @@
129123
"//PrintTrace": true,
130124

131125
"workThread": {
132-
/* 后台处理消息的线程个数(单位个,默认16)(0代表不开启服务) */
126+
/* 后台服务的线程个数(单位个,默认16)(0代表不开启服务) */
133127
"threadCount": 16
134128
},
135129

136130

137131
/* 默认站点名称,可多个,可不指定 */
138-
"//apiStationNames": [ "demo" ]
139-
},
132+
"//apiStationNames": [ "demo" ]
133+
},
140134

141135
/* ServiceStation配置,可不指定 */
142136
"ServiceStation": {

12.ServiceConsumer/ServiceConsumer/appsettings.json

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,7 @@
9393
/* 命名管道名称。例如: "Sers.CL.Ipc" */
9494
"pipeName": "Sers.CL.Ipc.4501",
9595
/* 连接秘钥,用以验证连接安全性。服务端和客户端必须一致 */
96-
"secretKey": "SersCL",
97-
98-
/* 请求超时时间(单位ms,默认60000) */
99-
"requestTimeoutMs": 3600000
96+
"secretKey": "SersCL"
10097
},
10198
{
10299
// Socket.Iocp
@@ -110,28 +107,22 @@
110107
/* 服务端 监听端口号。例如: 4501 */
111108
"port": 4501,
112109
/* 连接秘钥,用以验证连接安全性。服务端和客户端必须一致 */
113-
"secretKey": "SersCL",
114-
115-
/* 请求超时时间(单位ms,默认60000) */
116-
"requestTimeoutMs": 3600000
110+
"secretKey": "SersCL"
117111
}
118112
]
119113
},
120114

121115
/* LocalApiService 配置,可不指定 */
122116
"LocalApiService": {
123117

124-
/* 后台服务的线程个数(单位个,默认0,代表不开启服务) */
125-
"workThreadCount": 16,
126-
127-
128-
/* 超时时间,若不指定则后台任务永不超时。(主动关闭超过此时间的任务,实际任务强制关闭的时间会在1倍超时时间到2倍超时时间内)。单位:ms。*/
129-
"//timeout_ms": 300000,
130-
131-
132118
/* 是否 输出本地Api的调用信息到(ApiTrace)Log文件。默认:false */
133119
"//PrintTrace": true,
134120

121+
"workThread": {
122+
/* 后台服务的线程个数(单位个,默认16)(0代表不开启服务) */
123+
"threadCount": 16
124+
},
125+
135126

136127
/* 默认站点名称,可多个,可不指定 */
137128
"//apiStationNames": [ "demo" ]
@@ -149,11 +140,6 @@
149140

150141
"serslot": {
151142

152-
/* 处理请求转发的模式,可不指定。可为 Async(默认)、BackgroundTask */
153-
/* Async 异步转发请求,没有线程数量限制。此模式下extApi的reply无效。 */
154-
/* BackgroundTask 启动固定数量的线程转发请求,线程数量为Sers.LocalApiService.workThreadCount。 */
155-
"Mode": "BackgroundTask",
156-
157143
/* 额外api。SsApiDesc格式。除了系统api外,可以指定额外api。若指定返回数据(reply),则直接返回数据;若不指定返回数据,则由host进行处理 */
158144
"//extApi": [
159145
{

Library/ServiceAdaptor.NetCore.Be.Eureka/ServiceAdaptor.NetCore.Be.Eureka.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
5-
<Version>1.3.9</Version>
5+
<Version>1.3.10</Version>
66
<PackageProjectUrl>https://github.com/serset/ServiceAdaptor.NetCore</PackageProjectUrl>
77
</PropertyGroup>
88

Library/ServiceAdaptor.NetCore.Consul/ServiceAdaptor.NetCore.Consul.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<PropertyGroup>
88
<TargetFramework>netstandard2.0</TargetFramework>
9-
<Version>1.3.9</Version>
9+
<Version>1.3.10</Version>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
@@ -21,7 +21,7 @@
2121

2222
<ItemGroup>
2323
<PackageReference Include="Consul" Version="0.7.2.6" />
24-
<PackageReference Include="Vit.WebHost" Version="2.1.9" />
24+
<PackageReference Include="Vit.WebHost" Version="2.1.10" />
2525
</ItemGroup>
2626

2727

Library/ServiceAdaptor.NetCore.MinHttp/ServiceAdaptor.NetCore.MinHttp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<PropertyGroup>
88
<TargetFramework>netstandard2.0</TargetFramework>
9-
<Version>1.3.9</Version>
9+
<Version>1.3.10</Version>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>

Library/ServiceAdaptor.NetCore.Sers/ServiceAdaptor.NetCore.Sers.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<PropertyGroup>
88
<TargetFramework>netstandard2.0</TargetFramework>
9-
<Version>1.3.9</Version>
9+
<Version>1.3.10</Version>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
@@ -21,7 +21,7 @@
2121

2222
<ItemGroup>
2323
<!-- Sers -->
24-
<PackageReference Include="Sers.Serslot" Version="2.1.10" />
24+
<PackageReference Include="Sers.Serslot" Version="2.1.11" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

Library/ServiceAdaptor.NetCore/ServiceAdaptor.NetCore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<PropertyGroup>
88
<TargetFramework>netstandard2.0</TargetFramework>
9-
<Version>1.3.9</Version>
9+
<Version>1.3.10</Version>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
@@ -23,7 +23,7 @@
2323
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.1.0" />
2424

2525
<!-- Sers -->
26-
<PackageReference Include="Vit.Core" Version="2.1.9" />
26+
<PackageReference Include="Vit.Core" Version="2.1.10" />
2727
</ItemGroup>
2828

2929

Publish/ReleaseFile/docker-image/制作镜像.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cd /root/image
3838

3939
#构建镜像并推送到 Docker Hub
4040
cd adaptor-gateway
41-
docker buildx build . -t serset/adaptor-gateway:1.3.9 -t serset/adaptor-gateway --platform=linux/amd64,linux/arm64,linux/arm/v7 --push
41+
docker buildx build . -t serset/adaptor-gateway:1.3.10 -t serset/adaptor-gateway --platform=linux/amd64,linux/arm64,linux/arm/v7 --push
4242

4343

4444

0 commit comments

Comments
 (0)