forked.set_trace() rendering multiple GUIs in terminal that break each other called from Multiprocess, is there a better way to do this? #594
              
                Unanswered
              
          
                  
                    
                      aaronjolson
                    
                  
                
                  asked this question in
                Troubleshooting
              
            Replies: 1 comment
-
| 
         I think you'll need to get the debuggers running in different terminals. You could try debugging from a separate terminal or remote debugging. This could get a bit more tricky inside a docker container, it's not something I've personally tried.  | 
  
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
-
I have some code for taking in stream data from kafka (two different topics, 1 topic per process).
I run this in a docker container. I exec into the docker container and run this script.
There is an issue there when one of process hits the set_trace(), the second process keeps going, eventually it hits the set_trace() as well and a second instance of pudb tries to spawn in the same terminal and it renders over top of the previous one and things get really screwed up. Is there a better way to do this?
Beta Was this translation helpful? Give feedback.
All reactions