Make the maptile uploader in remote admin fire and forget so the controlling host gets a timely reply.
parent
fed566b8d3
commit
7caff51481
|
@ -2244,7 +2244,10 @@ namespace OpenSim.ApplicationPlugins.RemoteController
|
|||
IMapTileModule mapTileModule = scene.RequestModuleInterface<IMapTileModule>();
|
||||
if (mapTileModule != null)
|
||||
{
|
||||
mapTileModule.UploadMapTile(scene);
|
||||
Util.FireAndForget((x) =>
|
||||
{
|
||||
mapTileModule.UploadMapTile(scene);
|
||||
});
|
||||
responseData["success"] = true;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue