[Bug 796797] Gstreamer RTSP client connects to Gstreamer RTSP server: Only fixed number of connections are possible, then always "Error (503): Service Unavailable"

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Thu Jul 12 11:55:35 UTC 2018


https://bugzilla.gnome.org/show_bug.cgi?id=796797

--- Comment #6 from Marie Maurer <meinemailingliste2 at online.de> ---
According your comment:
Many thanks for your explanation!
So a missing teardown is an error by Gstreamer RTSP client
or gst-validate-1.0 or of my script?
What does it mean "...timeout..., if enabled"?
Is there a function/property you have in mind?

I see "session pool reached max sessions of 5" 18 times in log.
It comes from 
gst1-rtsp-server-1.14.1/gst/rtsp-server/rtsp-session-pool.c
Variable for max number seems to be "max_sessions".

GstRTSPSession *
gst_rtsp_session_pool_create (GstRTSPSessionPool * pool)
{
...
    /* check session limit */
    if (priv->max_sessions > 0) {
      if (g_hash_table_size (priv->sessions) >= priv->max_sessions)
        goto too_many_sessions;
    }
...
}

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list