diff options
author | Tom Grimshaw | 2010-07-01 08:55:52 -0700 |
---|---|---|
committer | Tom Grimshaw | 2010-07-01 08:57:13 -0700 |
commit | b38a22506b31041e29a1271db32046efcb14af4e (patch) | |
tree | a1c7b19ed25d569e01751ef6146dba90972d2dd3 | |
parent | Report asset upload success if it has previously failed (diff) | |
download | opensim-SC_OLD-b38a22506b31041e29a1271db32046efcb14af4e.zip opensim-SC_OLD-b38a22506b31041e29a1271db32046efcb14af4e.tar.gz opensim-SC_OLD-b38a22506b31041e29a1271db32046efcb14af4e.tar.bz2 opensim-SC_OLD-b38a22506b31041e29a1271db32046efcb14af4e.tar.xz |
Fix build break
-rw-r--r-- | OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs index bbccef9..94acd6c 100644 --- a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs +++ b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs | |||
@@ -307,7 +307,7 @@ namespace OpenSim.Services.Connectors | |||
307 | { | 307 | { |
308 | if (asset.UploadAttempts > 0) | 308 | if (asset.UploadAttempts > 0) |
309 | { | 309 | { |
310 | m_log.InfoFormat("[Assets] Upload of {0} succeeded after {1} failed attempts", asset.ID.ToString(), asset.UploadAttempts.ToString())); | 310 | m_log.InfoFormat("[Assets] Upload of {0} succeeded after {1} failed attempts", asset.ID.ToString(), asset.UploadAttempts.ToString()); |
311 | } | 311 | } |
312 | if (newID != String.Empty) | 312 | if (newID != String.Empty) |
313 | { | 313 | { |