Update deault a 499

This commit is contained in:
Samuele Locatelli
2024-05-14 11:13:22 +02:00
parent 7ceab28b24
commit b983b659b3
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -58,7 +58,7 @@ namespace Eqn.Sender.Controllers
#endif
[HttpPost("sendAndroid")]
public async Task<string> SendAndroid([FromBody] MsgPayload rawData, bool fullReturn = false, int maxToken = 500, int numParall = 4, bool dryRun = false)
public async Task<string> SendAndroid([FromBody] MsgPayload rawData, bool fullReturn = false, int maxToken = 499, int numParall = 4, bool dryRun = false)
{
string answ = await DoSend(rawData, fullReturn, true, maxToken, numParall, dryRun);
// restituisco esito...
@@ -66,7 +66,7 @@ namespace Eqn.Sender.Controllers
}
[HttpPost("sendIOS")]
public async Task<string> SendIOS([FromBody] MsgPayload rawData, bool fullReturn = false, int maxToken = 500, int numParall = 4, bool dryRun = false)
public async Task<string> SendIOS([FromBody] MsgPayload rawData, bool fullReturn = false, int maxToken = 499, int numParall = 4, bool dryRun = false)
{
string answ = await DoSend(rawData, fullReturn, false, maxToken, numParall, dryRun);
// restituisco esito...
+1 -1
View File
File diff suppressed because one or more lines are too long