Hi all,
Just to inform that I discovered a "bug" in :
/usr/local/buildmaster/service/agents/linux-x64/links.json
This file contains lines like:
"fr\\Microsoft.Data.SqlClient.resources.dll": "fr\\Microsoft.Data.SqlClient.resources.dll",
From what I can understand, this file makes a mapping (link) between windows named path to Linux named path but in this case the value part should contain "/" instead of "\\"
Because of that, there is an error in server ssh connection as the file name is incorrect.
I changed the file with the help of a configMap replacing the faulty json with a correct one.
This file now contains line like:
"fr\\Microsoft.Data.SqlClient.resources.dll": "fr/Microsoft.Data.SqlClient.resources.dll",
This should be patched in a future release...
Hope this helps,
Marc