~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to dev.cfg

  • Committer: John Arbash Meinel
  • Date: 2011-02-10 00:43:37 UTC
  • mto: This revision was merged to the branch mainline in revision 426.
  • Revision ID: john@arbash-meinel.com-20110210004337-8rwedln8fgg4un16
Add a <noop> command to the RequestWorker.

This allows us to push the workers to stop immediately, in case
they are currently blocked waiting on another item in the queue.
This makes the test suite integration tests faster, but also
makes the script runner exit in a timely manner as well.

Also creating a trivial load_test script, just for example
purposes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[global]
2
 
# This is where all of your settings go for your development environment
3
 
# Settings that are the same for both development and production
4
 
# (such as template engine, encodings, etc.) all go in 
5
 
# loggerhead/config/app.cfg
6
 
 
7
 
# DATABASE
8
 
 
9
 
# pick the form for your database
10
 
# sqlobject.dburi="postgres://username@hostname/databasename"
11
 
# sqlobject.dburi="mysql://username:password@hostname:port/databasename"
12
 
# sqlobject.dburi="sqlite:///file_name_and_path"
13
 
 
14
 
# If you have sqlite, here's a simple default to get you started
15
 
# in development
16
 
sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
17
 
 
18
 
 
19
 
# if you are using a database or table type without transactions
20
 
# (MySQL default, for example), you should turn off transactions
21
 
# by prepending notrans_ on the uri
22
 
# sqlobject.dburi="notrans_mysql://username:password@hostname:port/databasename"
23
 
 
24
 
# for Windows users, sqlite URIs look like:
25
 
# sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
26
 
 
27
 
# SERVER
28
 
 
29
 
# Some server parameters that you may want to tweak
30
 
# server.socket_port=8080
31
 
 
32
 
# Enable the debug output at the end on pages.
33
 
# log_debug_info_filter.on = False
34
 
 
35
 
#server.environment="development"
36
 
server.environment="production"
37
 
#autoreload.package="loggerhead"
38
 
 
39
 
# session_filter.on = True
40
 
 
41
 
# Set to True if you'd like to abort execution if a controller gets an
42
 
# unexpected parameter. False by default
43
 
tg.strict_parameters = True
44
 
 
45
 
# turn on timer scheduling
46
 
tg.scheduler = True
47
 
 
48
 
#loggerhead.folder='/Users/robey/code/paramiko/paramiko'
49
 
#loggerhead.branch_name='paramiko-dev'
50
 
loggerhead.folder='/Users/robey/code/bzr/bzr.dev'
51
 
loggerhead.branch_name='bzr.dev'
52
 
loggerhead.cachepath='/Users/robey/code/bzr/bzr.dev/.bzr/loggerhead-cache'
53
 
loggerhead.external_url="http://localhost:8080"
54
 
 
55
 
 
56
 
 
57
 
# LOGGING
58
 
# Logging configuration generally follows the style of the standard
59
 
# Python logging module configuration. Note that when specifying
60
 
# log format messages, you need to use *() for formatting variables.
61
 
# Deployment independent log configuration is in loggerhead/config/log.cfg
62
 
[logging]
63
 
 
64
 
[[loggers]]
65
 
[[[loggerhead]]]
66
 
level='DEBUG'
67
 
qualname='loggerhead'
68
 
handlers=['debug_out']
69
 
 
70
 
[[[allinfo]]]
71
 
level='INFO'
72
 
handlers=['debug_out']
73
 
 
74
 
[[[access]]]
75
 
level='INFO'
76
 
qualname='turbogears.access'
77
 
handlers=['access_out']
78
 
propagate=0
79
 
 
80
 
 
81
 
 
82