This is an automated email from the ASF dual-hosted git repository.
dcelasun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
The following commit(s) were added to refs/heads/master by this push:
new d1ccd0a THRIFT-4965: Perl tutorial server doesn't work due to the
lack of use statement
d1ccd0a is described below
commit d1ccd0a08fd82a1c58acd308fe533306362a73be
Author: Kengo Seki <[email protected]>
AuthorDate: Tue Oct 1 16:15:44 2019 -0700
THRIFT-4965: Perl tutorial server doesn't work due to the lack of use
statement
Client: Perl
This closes #1885.
---
tutorial/perl/PerlServer.pl | 1 +
1 file changed, 1 insertion(+)
diff --git a/tutorial/perl/PerlServer.pl b/tutorial/perl/PerlServer.pl
index dfe6b89..ee5d936 100644
--- a/tutorial/perl/PerlServer.pl
+++ b/tutorial/perl/PerlServer.pl
@@ -23,6 +23,7 @@ use strict;
use lib '../gen-perl';
use Thrift::Socket;
use Thrift::Server;
+use Thrift::ServerSocket;
use tutorial::Calculator;
package CalculatorHandler;