diff options
author | Clayton Smith <argilo@gmail.com> | 2016-12-09 19:09:33 -0500 |
---|---|---|
committer | Clayton Smith <argilo@gmail.com> | 2016-12-10 09:56:00 -0500 |
commit | fd6cc3a76c35da5b60f42620b64dbc0ccec93da2 (patch) | |
tree | bddc71df4da9aa6877512e2e182c6b2fc448d0aa /grc/core/utils/epy_block_io.py | |
parent | d4a3e0267c32912f234f5c59fc567982958e96e8 (diff) |
grc: Use vlen=1 for message blocks so they don't randomly disconnect.
Diffstat (limited to 'grc/core/utils/epy_block_io.py')
-rw-r--r-- | grc/core/utils/epy_block_io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/utils/epy_block_io.py b/grc/core/utils/epy_block_io.py index 53a1bb3c72..a094ab7ad5 100644 --- a/grc/core/utils/epy_block_io.py +++ b/grc/core/utils/epy_block_io.py @@ -25,7 +25,7 @@ def _ports(sigs, msgs): for msg_key in msgs: if msg_key == 'system': continue - ports.append((msg_key, 'message', None)) + ports.append((msg_key, 'message', 1)) return ports |