DEV Community

Discussion on: SignalR core python client: A simple Chat Hub Client

Collapse
 
dchoub profile image
Dhwani Choubisa

Hi Team,

I am using python client for websocket connection in my test.
when I try to make websocket connection on my local Kubernetes environment it works fine but the same thing is not working on QA environment, throws handshakeError

Only difference I can see in Developer(asp .Net) code is as below

.withURL(url),
{skipNegotiation: True,
Transport: HttpTransportType. webSocket}

Can you please help me, how can I pass the same parameter in my python code

Collapse
 
mandrewcito profile image
Andrés Baamonde Lozano

Negotiate at this moment is not skippable, i will think on that option thank you! ( i will ad it to my task list)

Collapse
 
mandrewcito profile image
Andrés Baamonde Lozano

hi!, now at version 0.8.4 you can skip negotiation (included at options dictionary). Take a look to "skip negotiation" section mandrewcito.github.io/signalrcore/

Collapse
 
dchoub profile image
Dhwani Choubisa

Thank you so much!! I really appreciate your effort.
let me test this and will keep you posted.