Make sure the AssetServiceConnector times out within 30 seconds. If it doesn't, the client will get bored and give an upload error, instead of granting success and entering the asset into our retry queue.
parent
3d495b709e
commit
2b49cb9227
|
@ -269,8 +269,8 @@ namespace OpenSim.Services.Connectors
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
newID = SynchronousRestObjectRequester.
|
newID = SynchronousRestObjectRequester.
|
||||||
MakeRequest<AssetBase, string>("POST", uri, asset);
|
MakeRequest<AssetBase, string>("POST", uri, asset, 25);
|
||||||
if (newID == null)
|
if (newID == null || newID == "")
|
||||||
{
|
{
|
||||||
newID = UUID.Zero.ToString();
|
newID = UUID.Zero.ToString();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue