refactor(MikrotikConfigRoutes): update speed test configuration to include 'proplist' for TCP metrics and remove deprecated 'protocol' parameter
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 1m44s

This commit is contained in:
2026-02-17 23:29:36 +07:00
parent 1a283f64f6
commit 270cee077f
+2 -2
View File
@@ -986,8 +986,8 @@ async function speedTestViaTunnel(req, res) {
address,
user: remoteCreds.user,
password: remoteCreds.password || '',
protocol: 'tcp',
'test-duration': `${durationSeconds}s`,
proplist: 'tcp-download,tcp-upload',
};
try {
@@ -995,8 +995,8 @@ async function speedTestViaTunnel(req, res) {
'/tool/speed-test',
`address=${body.address}`,
`user=${body.user}`,
'protocol=tcp',
`test-duration=${durationSeconds}s`,
'proplist=tcp-download,tcp-upload',
];
console.log('[mikrotik][speedTestViaTunnel]', {
serverId,