diff options
author | Justin Clarke Casey | 2008-04-20 19:39:24 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-20 19:39:24 +0000 |
commit | 8b177bf4a832d25b2b1324a1d2a5e6d3681c8030 (patch) | |
tree | c84a396734a29d58456f074e0b8f7bff01515b66 /OpenSim | |
parent | * Change user inventory create from explicit 'create user' command on the con... (diff) | |
download | opensim-SC_OLD-8b177bf4a832d25b2b1324a1d2a5e6d3681c8030.zip opensim-SC_OLD-8b177bf4a832d25b2b1324a1d2a5e6d3681c8030.tar.gz opensim-SC_OLD-8b177bf4a832d25b2b1324a1d2a5e6d3681c8030.tar.bz2 opensim-SC_OLD-8b177bf4a832d25b2b1324a1d2a5e6d3681c8030.tar.xz |
* Tweak inventory login failure message to point to the region owner as first point of call rather than the grid owner
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 3 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/LoginResponse.cs | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index f746e8b..a9e2780 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | |||
@@ -40,7 +40,8 @@ namespace OpenSim.Framework.Communications.Cache | |||
40 | /// </summary> | 40 | /// </summary> |
41 | public class UserProfileCacheService | 41 | public class UserProfileCacheService |
42 | { | 42 | { |
43 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 43 | private static readonly log4net.ILog m_log |
44 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | ||
44 | 45 | ||
45 | /// <summary> | 46 | /// <summary> |
46 | /// The comms manager holds references to services (user, grid, inventory, etc.) | 47 | /// The comms manager holds references to services (user, grid, inventory, etc.) |
diff --git a/OpenSim/Framework/Communications/LoginResponse.cs b/OpenSim/Framework/Communications/LoginResponse.cs index 53ec796..9636d16 100644 --- a/OpenSim/Framework/Communications/LoginResponse.cs +++ b/OpenSim/Framework/Communications/LoginResponse.cs | |||
@@ -247,8 +247,7 @@ namespace OpenSim.Framework.UserManagement | |||
247 | { | 247 | { |
248 | return GenerateFailureResponse( | 248 | return GenerateFailureResponse( |
249 | "key", | 249 | "key", |
250 | "The agent inventory service is not responding. Please notify the grid operator if this is a grid sim," | 250 | "The agent inventory service is not responding. Please notify your region operator.", |
251 | + " or the sim operator if this is a standalone sim.", | ||
252 | "false"); | 251 | "false"); |
253 | } | 252 | } |
254 | 253 | ||