You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/12/03 16:22:43 UTC

[1/2] allura git commit: Don't buffer output of debug mail server

Repository: allura
Updated Branches:
  refs/heads/master 1c38b6ffe -> 66a908f47


Don't buffer output of debug mail server


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/249d6234
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/249d6234
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/249d6234

Branch: refs/heads/master
Commit: 249d6234b6b2b5eb9eaac980f4aaec5062cdf4dc
Parents: 1c38b6f
Author: Igor Bondarenko <je...@gmail.com>
Authored: Thu Dec 3 14:05:09 2015 +0200
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Thu Dec 3 10:19:10 2015 -0500

----------------------------------------------------------------------
 docker-compose.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/249d6234/docker-compose.yml
----------------------------------------------------------------------
diff --git a/docker-compose.yml b/docker-compose.yml
index 770bf63..b6aeaa7 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -61,7 +61,7 @@ mongo:
 
 outmail:
   image: allura_web
-  command: python -m smtpd -n -c DebuggingServer 0.0.0.0:8826
+  command: python -u -m smtpd -n -c DebuggingServer 0.0.0.0:8826
   expose:
     - "8826"
 


[2/2] allura git commit: Docs: don't buffer output of debug mail server

Posted by br...@apache.org.
Docs: don't buffer output of debug mail server


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/66a908f4
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/66a908f4
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/66a908f4

Branch: refs/heads/master
Commit: 66a908f47adc6fbd5b46090c582694039b623770
Parents: 249d623
Author: Dave Brondsema <da...@brondsema.net>
Authored: Thu Dec 3 10:22:35 2015 -0500
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Thu Dec 3 10:22:35 2015 -0500

----------------------------------------------------------------------
 Allura/docs/getting_started/installation.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/66a908f4/Allura/docs/getting_started/installation.rst
----------------------------------------------------------------------
diff --git a/Allura/docs/getting_started/installation.rst b/Allura/docs/getting_started/installation.rst
index ce7014b..d8e2d0d 100644
--- a/Allura/docs/getting_started/installation.rst
+++ b/Allura/docs/getting_started/installation.rst
@@ -494,7 +494,7 @@ Just be sure the port matches the `smtp_port` from your `development.ini` (8826
 
 .. code-block:: bash
 
-    python -m smtpd -n -c DebuggingServer localhost:8826
+    python -u -m smtpd -n -c DebuggingServer localhost:8826
 
 This will create a new debugging server that discards messages and prints them to stdout.