diff options
author | Tom Grimshaw | 2010-07-01 08:52:30 -0700 |
---|---|---|
committer | Tom Grimshaw | 2010-07-01 08:52:30 -0700 |
commit | 38384cc79c04fe9b97070104283be02511c4e12c (patch) | |
tree | 4e6f89a986876db9d5788e7bc5ed31038d4ff2be /OpenSim | |
parent | Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff) | |
download | opensim-SC_OLD-38384cc79c04fe9b97070104283be02511c4e12c.zip opensim-SC_OLD-38384cc79c04fe9b97070104283be02511c4e12c.tar.gz opensim-SC_OLD-38384cc79c04fe9b97070104283be02511c4e12c.tar.bz2 opensim-SC_OLD-38384cc79c04fe9b97070104283be02511c4e12c.tar.xz |
Report asset upload success if it has previously failed
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs index bc56963..bbccef9 100644 --- a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs +++ b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs | |||
@@ -305,6 +305,10 @@ namespace OpenSim.Services.Connectors | |||
305 | } | 305 | } |
306 | else | 306 | else |
307 | { | 307 | { |
308 | if (asset.UploadAttempts > 0) | ||
309 | { | ||
310 | m_log.InfoFormat("[Assets] Upload of {0} succeeded after {1} failed attempts", asset.ID.ToString(), asset.UploadAttempts.ToString())); | ||
311 | } | ||
308 | if (newID != String.Empty) | 312 | if (newID != String.Empty) |
309 | { | 313 | { |
310 | // Placing this here, so that this work with old asset servers that don't send any reply back | 314 | // Placing this here, so that this work with old asset servers that don't send any reply back |