mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
Make the maptile uploader in remote admin fire and forget so the controlling host gets a timely reply.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user