mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 19:36:07 +08:00
in some cases store a hg asset on local grid is just waste
This commit is contained in:
@@ -113,7 +113,7 @@ namespace OpenSim.Services.AssetService
|
||||
}
|
||||
}
|
||||
|
||||
public AssetBase Get(string id, string ForeignAssetService)
|
||||
public AssetBase Get(string id, string ForeignAssetService, bool dummy)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -129,7 +129,7 @@ namespace OpenSim.Services.AssetService
|
||||
}
|
||||
}
|
||||
|
||||
public AssetBase Get(string id, string ForeignAssetService)
|
||||
public AssetBase Get(string id, string ForeignAssetService, bool dummy)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -156,7 +156,7 @@ namespace OpenSim.Services.Connectors
|
||||
return asset;
|
||||
}
|
||||
|
||||
public AssetBase Get(string id, string ForeignAssetService)
|
||||
public AssetBase Get(string id, string ForeignAssetService, bool dummy)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -85,7 +85,7 @@ namespace OpenSim.Services.Connectors
|
||||
return null;
|
||||
}
|
||||
|
||||
public AssetBase Get(string id, string ForeignAssetService)
|
||||
public AssetBase Get(string id, string ForeignAssetService, bool dummy)
|
||||
{
|
||||
IAssetService connector = GetConnector(ForeignAssetService);
|
||||
return connector.Get(id);
|
||||
|
||||
@@ -420,7 +420,7 @@ namespace OpenSim.Services.FSAssetService
|
||||
return Get(id, out hash);
|
||||
}
|
||||
|
||||
public AssetBase Get(string id, string ForeignAssetService)
|
||||
public AssetBase Get(string id, string ForeignAssetService, bool dummy)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -125,7 +125,7 @@ namespace OpenSim.Services.HypergridService
|
||||
return asset;
|
||||
}
|
||||
|
||||
public AssetBase Get(string id, string ForeignAssetService)
|
||||
public AssetBase Get(string id, string ForeignAssetService, bool dummy)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ namespace OpenSim.Services.HypergridService
|
||||
return asset;
|
||||
}
|
||||
|
||||
public AssetBase Get(string id, string ForeignAssetService)
|
||||
public AssetBase Get(string id, string ForeignAssetService, bool dummy)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -40,8 +40,8 @@ namespace OpenSim.Services.Interfaces
|
||||
/// <param name="id"></param>
|
||||
/// <returns></returns>
|
||||
AssetBase Get(string id);
|
||||
AssetBase Get(string id, string ForeignAssetService);
|
||||
|
||||
AssetBase Get(string id, string ForeignAssetService, bool StoreOnLocalGrid);
|
||||
|
||||
/// <summary>
|
||||
/// Get an asset's metadata
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user