[Groonga-commit] groonga/gcs [master] Fix missing variable error

Back to archive index

YUKI Hiroshi null+****@clear*****
Wed Nov 21 19:42:51 JST 2012


YUKI Hiroshi	2012-11-21 19:42:51 +0900 (Wed, 21 Nov 2012)

  New Revision: 8cd6b1b407dc2d61d0555f078b33e59fb62cc7ed
  https://github.com/groonga/gcs/commit/8cd6b1b407dc2d61d0555f078b33e59fb62cc7ed

  Log:
    Fix missing variable error

  Modified files:
    lib/api/2011-02-01/configuration.js

  Modified: lib/api/2011-02-01/configuration.js (+1 -1)
===================================================================
--- lib/api/2011-02-01/configuration.js    2012-11-21 19:40:38 +0900 (0877b01)
+++ lib/api/2011-02-01/configuration.js    2012-11-21 19:42:51 +0900 (d48c0eb)
@@ -384,7 +384,7 @@ handlers.DeleteIndexField = function(context, request, response, config) {
         return new Domain(request.query.DomainName || '', context).validate();
       });
   if (!domain || !domain.exists())
-    throw new errors.ResourceNotFoundError('Domain not found: ' + domainName);
+    throw new errors.ResourceNotFoundError('Domain not found: ' + request.query.DomainName);
 
   var fieldName = request.query['IndexFieldName'] || '';
   var field = handleIndexFieldValidationError(function() {
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index