mirror of
https://github.com/xcat2/confluent.git
synced 2025-01-15 12:17:47 +00:00
Fix spurious trace on immediate exit confetty
When confetty exits without doing anything, it causes sockapi to reference an empty request. Check for that before checking if it is a collective request.
This commit is contained in:
parent
c150a848fd
commit
c96b5f0270
@ -143,7 +143,7 @@ def sessionhdl(connection, authname, skipauth=False, cert=None):
|
||||
cfm = authdata[1]
|
||||
send_data(connection, {'authpassed': 1})
|
||||
request = tlvdata.recv(connection)
|
||||
if 'collective' in request and skipauth:
|
||||
if request and 'collective' in request and skipauth:
|
||||
if not libssl:
|
||||
tlvdata.send(
|
||||
connection,
|
||||
|
Loading…
x
Reference in New Issue
Block a user