# HG changeset patch # User Waqas Hussain # Date 1223500113 -18000 # Node ID a115b99419ad2b37460a0fdae47e06e4187abc86 # Parent d0a0bac6815ed83d9875fcac4e0ab3976fb44408 Added: mod_register now replies with an error stanza when file write fails diff -r d0a0bac6815e -r a115b99419ad plugins/mod_register.lua --- a/plugins/mod_register.lua Thu Oct 09 01:20:43 2008 +0500 +++ b/plugins/mod_register.lua Thu Oct 09 02:08:33 2008 +0500 @@ -29,7 +29,8 @@ if usermanager_create_user(username, password, session.host) then -- password change -- TODO is this the right way? send(session, st.reply(stanza)); else - -- TODO internal error, unable to write file, file may be locked, etc + -- TODO unable to write file, file may be locked, etc, what's the correct error? + send(session, st.error_reply(stanza, "wait", "internal-server-error")); end else send(session, st.error_reply(stanza, "modify", "bad-request")); @@ -70,7 +71,8 @@ if usermanager_create_user(username, password, session.host) then send(session, st.reply(stanza)); -- user created! else - -- TODO internal error, unable to write file, file may be locked, etc + -- TODO unable to write file, file may be locked, etc, what's the correct error? + send(session, st.error_reply(stanza, "wait", "internal-server-error")); end end else