Skip to content
This repository was archived by the owner on Nov 7, 2020. It is now read-only.

Commit

Permalink
Include SESSION_MODE in both server and client
Browse files Browse the repository at this point in the history
  • Loading branch information
yourcelf committed Apr 21, 2016
1 parent f48edae commit 68a5cc3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion simulatorConf.js.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
// the range ensures that sessions fill up.
"SESSION_RANGE": [0, 50],
// Session mode: "randomized" or "admin". If "randomized", only
// randomized sessions will be used.
// randomized sessions will be used. Must be duplicated in "SERVER" section!
"SESSION_MODE": "admin",
// Disable sending of blur/focus socket traffic?
"DISABLE_BLUR": true,
Expand All @@ -38,6 +38,9 @@ module.exports = {
"SERVER": {
// The ID of the event in which to generate sessions.
"EVENT_ID": 10,
// Session mode: "randomized" or "admin". If "randomized", only
// randomized sessions will be used. Must be duplicated in "CLIENT" section!
"SESSION_MODE": "admin",
// The range of admin-proposed session IDs to generate in that event.
"SESSION_RANGE": [0, 50],
// The range of users to generate.
Expand Down

0 comments on commit 68a5cc3

Please sign in to comment.