[Groonga-commit] groonga/gcs [master] Return "127.0.0.1.xip.io:7575" as the host and port by default

Back to archive index

SHIMODA Hiroshi null+****@clear*****
Wed Aug 15 13:49:51 JST 2012


SHIMODA Hiroshi	2012-08-15 13:49:51 +0900 (Wed, 15 Aug 2012)

  New Revision: 5e3d9965baf4c6cce4ee16de9564af19d23bc0a0
  https://github.com/groonga/gcs/commit/5e3d9965baf4c6cce4ee16de9564af19d23bc0a0

  Log:
    Return "127.0.0.1.xip.io:7575" as the host and port by default

  Modified files:
    bin/gcs-describe-domain

  Modified: bin/gcs-describe-domain (+4 -2)
===================================================================
--- bin/gcs-describe-domain    2012-08-15 13:48:04 +0900 (8f7ccb8)
+++ bin/gcs-describe-domain    2012-08-15 13:49:51 +0900 (33032aa)
@@ -13,14 +13,16 @@ commandLine
           String)
   .parse();
 
+var hostPort = '127.0.0.1.xip.io:7575';
+
 function report(domain) {
   console.log('=== Domain Summary ===');
   console.log('Domain Name: %s',
               domain.name);
   console.log('Document Service endpoint: %s',
-              domain.getDocumentsEndpoint('localhost'));
+              domain.getDocumentsEndpoint(hostPort));
   console.log('Search Service endpoint: %s',
-              domain.getSearchEndpoint('localhost'));
+              domain.getSearchEndpoint(hostPort));
   console.log('SearchInstanceType: %s',
               domain.searchInstanceType);
   console.log('SearchPartitionCount: %s',
-------------- next part --------------
HTML����������������������������...
下載 



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