Update conf x test simula con meno chiamate redis in SET (ci sono publish...)

This commit is contained in:
Samuele Locatelli
2025-07-17 17:27:46 +02:00
parent ad26e819bd
commit 44ffc45f92
7 changed files with 13 additions and 5 deletions
+6
View File
@@ -223,12 +223,18 @@
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
<Content Include="Tools\FPW_import.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="Tools\ImportTaglierinaConf.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Tools\RefExcConv.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<Content Include="Tools\TEMPLATE_ODL_USDT.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
-1
View File
@@ -20,4 +20,3 @@ CLI_INST=SteamWareSim
STARTLIST=FTP_SONATEST
MAXCNC=10
-1
View File
@@ -25,4 +25,3 @@ STARTLIST=3024
;STARTLIST=3024
MAXCNC=10
-1
View File
@@ -32,4 +32,3 @@ CLI_INST=SteamWareSim
STARTLIST=2015
MAXCNC=10
-1
View File
@@ -19,4 +19,3 @@ STARTLIST=FTP-PING
;STARTLIST=3024-PING
MAXCNC=10
-1
View File
@@ -23,4 +23,3 @@ STARTLIST=3018
;STARTLIST=3019
MAXCNC=10
+7
View File
@@ -59,10 +59,15 @@ namespace IOB_WIN_WS.IobWs
ExtToolConf ConfigFile = JsonConvert.DeserializeObject<ExtToolConf>(rawData) ?? new ExtToolConf();
basePath = ConfigFile.FileOutPath;
archivePath = ConfigFile.ArchiveDir;
lgInfo($"exclToolDirPath: {exclToolDirPath} | fullPath: {fullPath} | basePath: {basePath} | archivePath: {archivePath}");
lgInfo("03 - Conf");
}
}
// faccio un fileImport preliminare...
ProcessFileImport();
if (EnableTest)
{
PrelimRestTest();
@@ -556,10 +561,12 @@ namespace IOB_WIN_WS.IobWs
{
// avvio proc import tramite exe tool esterno...
FileProcMan fpm = new FileProcMan(exclToolDirPath, "ExcImport.exe", rKeyConf, FileConfPath);
lgInfo($"ProcessFileImport | FileConfPath: {FileConfPath} | exclToolDirPath: {exclToolDirPath} | FileInPath: {FileInPath}");
fpm.doProcess(FileInPath, 0);
answ = true;
// aggiorno md5...
redisMan.setRSV(rKeyMD5, newMd5);
lgInfo($"Eseguito caricamento MD5 e DB conf ricette FPW");
}
}
}