Skip to content

Commit

Permalink
change configuration back to default values
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwalton committed Jan 12, 2018
1 parent 4bf6891 commit ba0eb05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/graphConf.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

// configuration for the graph database access
const HOST = "josh-test.cluster-cnyckbjgsrik.us-east-1-beta.rds.amazonaws.com"
const HOST = "localhost"
const PORT = "8182"

// for implementations like Neptune where only single commands are allowed per request
// set to true
const SINGLE_COMMANDS_AND_NO_VARS = true;
const SINGLE_COMMANDS_AND_NO_VARS = false;


// The communication protocol with the server can be "REST" or "websocket"
Expand All @@ -15,8 +15,8 @@ const COMMUNICATION_PROTOCOL = "REST";

// The communication method can be GraphSON 1.0 (used by Gremlin 3.2)
// or GraphSON 3.0 (used by Gremlin 3.3)
//const COMMUNICATION_METHOD = "GraphSON1"
const COMMUNICATION_METHOD = "GraphSON3"
const COMMUNICATION_METHOD = "GraphSON1"
//const COMMUNICATION_METHOD = "GraphSON3"

// Graph configuration
const default_nb_of_layers = 3;
Expand Down

0 comments on commit ba0eb05

Please sign in to comment.