Git Product home page Git Product logo

Comments (13)

jkarneges avatar jkarneges commented on August 25, 2024

Are you using Daphne? How are you launching the server? Where is runCoap running?

from django-eventstream.

vnahmias avatar vnahmias commented on August 25, 2024

i launch the server running : python3 manage.py runserver and this function is ran just after the initialization of the app

from django-eventstream.

jkarneges avatar jkarneges commented on August 25, 2024

Hmm, I don't see anything obviously wrong. Some debugging ideas:

  1. Use curl to read the stream, and see if it also stops printing messages.
  2. Make a function that just sends a test message in a loop, without the coap stuff, and see if that works any better.

from django-eventstream.

vnahmias avatar vnahmias commented on August 25, 2024

Okay i am going to try this tmr i'll keep you updated

from django-eventstream.

vnahmias avatar vnahmias commented on August 25, 2024

okay so i have made a few tests :

def test(self):
        while True:
            send_event('test', 'message', "Hello my name is Vincent")
            time.sleep(5)

this function only send a continuous stream if the line time.sleep(5) is commented but in the navigator console it shows me like 85 messages then i wait a bit and refresh the page and here i have 1000 messages but it is not really real time. So in my case removed the line await asyncio.sleep and it seems to work better but i was expecting a real continuous stream

from django-eventstream.

jkarneges avatar jkarneges commented on August 25, 2024

time.sleep will block the eventloop. Try with await asyncio.sleep(5).

Also what happens if you curl? If you see a continuous stream there or not will tell us whether the issue is potentially browser related.

from django-eventstream.

vnahmias avatar vnahmias commented on August 25, 2024

I don't know where you want me to use curl and how, sorry i am a newbie to web programming

from django-eventstream.

jkarneges avatar jkarneges commented on August 25, 2024

curl -i url

(where url is the value you're currently passing to ReconnectingEventSource)

This will make the same request to the server that the browser is doing, and print the response data as it arrives.

from django-eventstream.

vnahmias avatar vnahmias commented on August 25, 2024

i ran curl -i "http://localhost:8000/" in my terminal, and the output is the code of my html page i am not sure about what you want me to try

from django-eventstream.

jkarneges avatar jkarneges commented on August 25, 2024

You'll want to use the URL being passed to ReconnectingEventSource, not the URL of the page.

from django-eventstream.

jkarneges avatar jkarneges commented on August 25, 2024

@vnahmias , did you manage to resolve this?

from django-eventstream.

vnahmias avatar vnahmias commented on August 25, 2024

Hello no i finally got rid off the django server and using Flask instead

from django-eventstream.

jkarneges avatar jkarneges commented on August 25, 2024

Oh okay. I'll close this issue then.

from django-eventstream.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.