Skip to content

Commit

Permalink
Clean up the URI used for process-state databases.
Browse files Browse the repository at this point in the history
* removed localhost:4334 from the URI
* its inclusion is unnecessary for an in-memory datomic db
  • Loading branch information
dchelimsky committed Feb 26, 2014
1 parent 3c189ed commit 335571c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simulant/sim.clj
Expand Up @@ -170,7 +170,7 @@ process."

(defn construct-process-state
[_ _]
(->ProcessStateService (str "datomic:mem://localhost:4334/" (gensym))))
(->ProcessStateService (str "datomic:mem://" (gensym))))

(defn create-process-state
"Mark the fact that a sim will use a process state service."
Expand Down

0 comments on commit 335571c

Please sign in to comment.