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
I am confused by the syntax with backticks. I thought it is an old way of writing $() to evaluate something inline and use the output in the command itself. But since this command on line 4 is not nested, I wonder what the added value is.
It also distracts from the super important & at the end which makes sure the command is ran in the background so the script continues to the tail of the log. (If you don't run it in the background, there's no logging at all.)
I understand the MultiLangDaemon uses stdin and stdout for communication with the python process. Is that the reason the python process itself cannot run as the main process?
The text was updated successfully, but these errors were encountered:
See
amazon-kinesis-data-processor-aws-fargate/consumer/run.sh
Line 4 in 147ca29
I am confused by the syntax with backticks. I thought it is an old way of writing
$()
to evaluate something inline and use the output in the command itself. But since this command on line 4 is not nested, I wonder what the added value is.It also distracts from the super important
&
at the end which makes sure the command is ran in the background so the script continues to thetail
of the log. (If you don't run it in the background, there's no logging at all.)I understand the MultiLangDaemon uses stdin and stdout for communication with the python process. Is that the reason the python process itself cannot run as the main process?
The text was updated successfully, but these errors were encountered: