~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.5.txt

  • Committer: John Arbash Meinel
  • Date: 2011-09-15 12:56:23 UTC
  • mto: (6133.4.49 2.5-soft-hangup-795025)
  • mto: This revision was merged to the branch mainline in revision 6170.
  • Revision ID: john@arbash-meinel.com-20110915125623-sxo3jk6d858alyzf
Expose --client-timeout to the command line, pass it through the layers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
* ``bzr serve`` will now disconnect clients if they have not issued an RPC
76
76
  request after 5minutes. On POSIX platforms, this will also happen for
77
 
  ``bzr serve --inet``. (John Arbash Meinel, #824797)
 
77
  ``bzr serve --inet``. This can be overridden with the configuration
 
78
  variable ``serve.client_timeout`` or in the command line parameter
 
79
  ``bzr serve --client-timeout=X``. (John Arbash Meinel, #824797)
78
80
 
79
81
* ``config.Option`` can now declare ``default_from_env``, a list of
80
82
  environment variables to get a default value from. (Vincent Ladeuil)
233
235
* New registry ``OptionRegistry`` specialized for configuration options.
234
236
  (Vincent Ladeuil)
235
237
 
 
238
* Plugins that implement custom protocols for ``bzr serve`` should now
 
239
  also take an argument ``timeout``. This is used by the the bzr protocol
 
240
  to close a connection if a client has been idle for more than X seconds.
 
241
  (Default 5minutes). (John Arbash Meinel)
 
242
 
236
243
* Remove ``AtomicFile.closed`` which has been deprecated in bzr 0.10.
237
244
  (Vincent Ladeuil)
238
245