You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by dc...@apache.org on 2019/10/01 23:15:54 UTC

[thrift] branch master updated: THRIFT-4965: Perl tutorial server doesn't work due to the lack of use statement

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 <se...@apache.org>
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;