Skip to content
Snippets Groups Projects
Commit 4ebcbb3e authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

get_substream_list - return all substreams by default in python

parent f967b13d
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ class DataBroker {
*/
virtual NetworkConnectionType CurrentConnectionType() const = 0;
//! Set list of substreams
//! Get list of substreams, set from to "" to get all substreams
virtual StreamInfos GetSubstreamList(std::string from, Error* err) = 0;
//! Get current number of datasets
......
......@@ -203,7 +203,7 @@ cdef class PyDataBroker:
if err:
throw_exception(err)
return _str(group_id)
def get_substream_list(self,from_substream):
def get_substream_list(self, from_substream = ""):
cdef Error err
cdef vector[StreamInfo] substreams
cdef string b_from_substream = _bytes(from_substream)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment