Skip to content

Commit

Permalink
#877: raise clipboard requests per second limit
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@9566 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jun 2, 2015
1 parent 19ca010 commit e2fd02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/server/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
NOYIELD = os.environ.get("XPRA_YIELD") is None
debug = log.debug

MAX_CLIPBOARD_PER_SECOND = int(os.environ.get("XPRA_CLIPBOARD_LIMIT", "10"))
MAX_CLIPBOARD_PER_SECOND = int(os.environ.get("XPRA_CLIPBOARD_LIMIT", "20"))
ADD_LOCAL_PRINTERS = os.environ.get("XPRA_ADD_LOCAL_PRINTERS", "0")=="1"
try:
GRACE_PERCENT = int(os.environ.get("XPRA_GRACE_PERCENT", "90"))
Expand Down

0 comments on commit e2fd02a

Please sign in to comment.