You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by al...@apache.org on 2013/12/02 18:12:15 UTC

svn commit: r1547112 - /gora/site/trunk/content/current/tutorial.md

Author: alfonsonishikawa
Date: Mon Dec  2 17:12:14 2013
New Revision: 1547112

URL: http://svn.apache.org/r1547112
Log:
Tutorial minor errata fix: missing configuration 'conf' parameter in DataStoreFactory.getDataStore(key,value,conf)

Modified:
    gora/site/trunk/content/current/tutorial.md

Modified: gora/site/trunk/content/current/tutorial.md
URL: http://svn.apache.org/viewvc/gora/site/trunk/content/current/tutorial.md?rev=1547112&r1=1547111&r2=1547112&view=diff
==============================================================================
--- gora/site/trunk/content/current/tutorial.md (original)
+++ gora/site/trunk/content/current/tutorial.md Mon Dec  2 17:12:14 2013
@@ -354,7 +354,7 @@ DataStore instance so that it can be use
         }
       }
       private void init() throws IOException {
-        dataStore = DataStoreFactory.getDataStore(Long.class, Pageview.class);
+        dataStore = DataStoreFactory.getDataStore(Long.class, Pageview.class, new Configuration());
       }
 
 DataStore is probably the most important class in the Gora API.