From 7ab31e4fd1bf3c6389d1743ee0e8554aa8b97ad4 Mon Sep 17 00:00:00 2001 From: Christopher Piro Date: Fri, 4 Jan 2008 00:21:18 +0000 Subject: [PATCH] [thrift] add show_pid option to thrift.app.src (Erlang) Summary: we've been using this option in our apps but we never added it to thrift's own config Reviewed By: eletuchy Test Plan: ok Other Notes: contributed by Jason Ganetsky (jason@amiestreet.com) git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665411 13f79535-47bb-0310-9956-ffa450edef68 --- lib/erl/src/thrift.app.src | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/erl/src/thrift.app.src b/lib/erl/src/thrift.app.src index e1d6be16..79055ca6 100644 --- a/lib/erl/src/thrift.app.src +++ b/lib/erl/src/thrift.app.src @@ -7,21 +7,20 @@ % The version of the applicaton {vsn, "%VSN%"}, - % All modules used by the application. - {modules, - [ - %MODULES% + % All modules used by the application. + {modules, [ + %MODULES% ]}, % All of the registered names the application uses. This can be ignored. {registered, []}, % Applications that are to be started prior to this one. This can be ignored - % leave it alone unless you understand it well and let the .rel files in - % your release handle this. + % leave it alone unless you understand it well and let the .rel files in + % your release handle this. {applications, [ - kernel, + kernel, stdlib ]}, @@ -37,6 +36,7 @@ {force_one_line, false}, {omit_fmt, ["thrift ~p:new(~s) = ~s"]}, {gen_server_messages, true}, + {show_pid, true}, {lookup, false} % DNS ]}, -- 2.17.1