You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jk...@apache.org on 2017/09/21 14:08:31 UTC

[2/2] thrift git commit: THRIFT-4333 All tutorial examples with port 9090.

THRIFT-4333 All tutorial examples with port 9090.

This closes #1364


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/5310616b
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/5310616b
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/5310616b

Branch: refs/heads/master
Commit: 5310616b10b35ebd30cae74b282bc751e9982f9d
Parents: faa2a3e
Author: walter-weinmann <wa...@gmail.com>
Authored: Mon Sep 18 20:18:50 2017 +0200
Committer: James E. King, III <jk...@apache.org>
Committed: Thu Sep 21 07:08:04 2017 -0700

----------------------------------------------------------------------
 tutorial/erl/client.erl | 2 +-
 tutorial/erl/server.erl | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/5310616b/tutorial/erl/client.erl
----------------------------------------------------------------------
diff --git a/tutorial/erl/client.erl b/tutorial/erl/client.erl
index 77763a2..0374220 100644
--- a/tutorial/erl/client.erl
+++ b/tutorial/erl/client.erl
@@ -28,7 +28,7 @@ p(X) ->
     ok.
 
 t() ->
-    Port = 9999,
+    Port = 9090,
 
     {ok, Client0} = thrift_client_util:new("127.0.0.1",
                                            Port,

http://git-wip-us.apache.org/repos/asf/thrift/blob/5310616b/tutorial/erl/server.erl
----------------------------------------------------------------------
diff --git a/tutorial/erl/server.erl b/tutorial/erl/server.erl
index b877f5e..647cc24 100644
--- a/tutorial/erl/server.erl
+++ b/tutorial/erl/server.erl
@@ -63,7 +63,7 @@ zip() ->
 %%
 
 start() ->
-    start(9999).
+    start(9090).
 
 start(Port) ->
     Handler   = ?MODULE,