Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.io.stream
Commits
d3f887f6
Commit
d3f887f6
authored
Sep 14, 2020
by
Vincent POLLET
Browse files
Get data path of initial stream, not "use config from" stream
parent
3c30fe5b
Pipeline
#42749
passed with stage
in 12 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/io/stream/stream_file.py
View file @
d3f887f6
...
...
@@ -102,9 +102,9 @@ class StreamFile:
# load stream data
def
load_stream_data
(
self
,
stream_name
,
index
):
data_config
=
self
.
get_stream_config
(
stream_name
)
data_path
=
data_config
[
"path"
]
if
"use_config_from"
in
data_config
:
data_config
=
self
.
get_stream_config
(
data_config
[
"use_config_from"
])
data_path
=
data_config
[
"path"
]
# load only relevant data
if
isinstance
(
index
,
int
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment