is there any way to decrease the size of slices when data is transfer to a peer using luascript
orthanc.json
“peer1” : {
“Name” : “test”,
“Url” : “http://localhost:5432/”,
“Username” : “admin”,
“Password” : “password”,
“HttpHeaders” : { “Token” : “Hello world” },
“StorageTransferSyntax”: “1.2.840.10008.1.2.4.60”, // This should specify
“Pkcs11” : false,
“Timeout” : 42 // New in Orthanc 1.9.1
}
},
script.lua
function OnStoredInstance(instanceId)
SendToPeer(instanceId, “peer1”)
end
what all changes need in the orthanc.conf and luascript file for the above requirement