Changeset

9492:c03c60a2dede

mod_storage_sql: Have :users() throw an error on failure instead of returning non-iterator values
author Matthew Wild <mwild1@gmail.com>
date Thu, 11 Oct 2018 19:15:46 +0100
parents 9491:89e4cbd1a564
children 9493:55b40f3fa659
files plugins/mod_storage_sql.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_storage_sql.lua	Fri Oct 12 03:43:56 2018 +0200
+++ b/plugins/mod_storage_sql.lua	Thu Oct 11 19:15:46 2018 +0100
@@ -142,7 +142,7 @@
 		]];
 		return engine:select(select_sql, host, self.store);
 	end);
-	if not ok then return ok, result end
+	if not ok then error(result); end
 	return iterator(result);
 end