You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When declare two procedure files like this:
$ cat a.pipe
function a_sysinfo
{
# something
}
function a_foo
{
# something
}
$ cat b.pipe
function b_sysinfo
{
# something
}
function b_foo
{
SP_run a_foo
}
Now, run command 'seqpipe -m a.pipe -m b.pipe b_foo'. Only the procedure
'b_sysinfo' is called, and 'a_sysinfo' is not called.
It is expected that both 'a_sysinfo' and 'b_sysinfo' should be called, since
'a_foo' and 'b_foo' are called in the pipeline.
Original issue reported on code.google.com by [email protected] on 23 Dec 2012 at 6:07
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 23 Dec 2012 at 6:07The text was updated successfully, but these errors were encountered: