Florijan Hamzic added the comment:

Hi,

i have a similiar issue:

i have a really simple scenario

Callee:
```
@classmethod
def MoveDataToOtherSide(cls, model)
data = {
            "FirstName": model.FirstName,
            "LastName": model.LastName,
            "Email": model.Email,
            "Pass": model.Password,
            "Images": cls.LoadUserImages(model.ID)
        }

        p = Process(target=UserService.MoveProfileToOtherSide, kwargs={"data": 
data})
        p.start()
```

Processeee
```
@staticmethod
    def MoveProfileToOtherSide(data): requests.get("https://mySecretUrl.de";, 
params={"token": "secBlub", "data": encode(data, unpicklable=False)})
```

I think it has something todo with stdout but i have no clue how i could debug 
this further, unfortunetely. 

The Application around this functionality (UserService) is cherrypy.

----------
nosy: +Florijan Hamzic

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue21429>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to