Add issue url to tests

This commit is contained in:
Daniel A. Wozniak 2018-11-15 12:02:58 -07:00
parent c4d7a4352c
commit 39e811b296
No known key found for this signature in database
GPG key ID: 166B9D2C06C82D61

View file

@ -474,6 +474,8 @@ class PubServerChannel(TestCase, AdaptedConfigurationTestCaseMixin):
def test_issue_36469_tcp(self):
'''
Test sending both large and small messags to publisher using TCP
https://github.com/saltstack/salt/issues/36469
'''
opts = dict(self.master_config, ipc_mode='tcp', pub_hwm=0)
server_channel = salt.transport.zeromq.ZeroMQPubServerChannel(opts)
@ -503,6 +505,8 @@ class PubServerChannel(TestCase, AdaptedConfigurationTestCaseMixin):
def test_issue_36469_udp(self):
'''
Test sending both large and small messags to publisher using UDP
https://github.com/saltstack/salt/issues/36469
'''
opts = dict(self.master_config, ipc_mode='udp', pub_hwm=0)
server_channel = salt.transport.zeromq.ZeroMQPubServerChannel(opts)