Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
1b789bf8
Commit
1b789bf8
authored
3 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into
TMSS-666
parents
166ac9ae
af11ee73
No related branches found
No related tags found
1 merge request
!426
Resolve TMSS-666
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MAC/Services/src/PipelineControl.py
+4
-2
4 additions, 2 deletions
MAC/Services/src/PipelineControl.py
SAS/TMSS/scripts/notebooks/project_report_poc.ipynb
+1267
-0
1267 additions, 0 deletions
SAS/TMSS/scripts/notebooks/project_report_poc.ipynb
with
1271 additions
and
2 deletions
MAC/Services/src/PipelineControl.py
+
4
−
2
View file @
1b789bf8
...
...
@@ -102,15 +102,17 @@ def runCommand(cmdline, input=None):
cmdline
,
stdin
=
subprocess
.
PIPE
if
input
else
None
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
STDOUT
,
stderr
=
subprocess
.
PIPE
,
shell
=
True
,
universal_newlines
=
True
)
# Feed input and wait for termination
logger
.
debug
(
"
runCommand input: %s
"
,
input
)
stdout
,
_
=
communicate_returning_strings
(
proc
,
input
)
stdout
,
stderr
=
communicate_returning_strings
(
proc
,
input
)
logger
.
debug
(
"
runCommand output: %s
"
,
stdout
)
if
stderr
:
logger
.
warn
(
"
runCommand stderr output: %s
"
,
stderr
)
# Check exit status, bail on error
if
proc
.
returncode
!=
0
:
...
...
This diff is collapsed.
Click to expand it.
SAS/TMSS/scripts/notebooks/project_report_poc.ipynb
0 → 100644
+
1267
−
0
View file @
1b789bf8
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment