------------------------------------------------------------------------------
To reply, visit https://hellosplat.com/s/beanbag/tickets/4547/
------------------------------------------------------------------------------

New update by viney
For Beanbag, Inc. > RBTools > Ticket #4547


Reply:

    I have made some changes in rbtools file utils/process.py . 
    
    original code (line number 162 to 173) :
    
        if split_lines:
            data = p.stdout.readlines()
    
            if return_errors:
                errors = p.stderr.readlines()
        else:
            data = p.stdout.read()
    
            if return_errors:
                errors = p.stderr.read()
    
        rc = p.wait()
    
    new code :
    
        if with_errors == False:
            data , errors = p.communicate()
            rc = p.returncode
        else:
            if split_lines:
                data = p.stdout.readlines()
            else:
                data = p.stdout.read()
            rc= p.wait()
            
    After replacing original code by new code , rbt post command (rbt post 
--summary="Demo Test" --description="Demo" brtype:my_branch) does not hangs , 
means its working fine.
    Please provide your feedback/confirmation on this , after that i will 
initiate code review reuqest with above changes in rbtools code.

-- 
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.

Reply via email to