mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 12:39:35 -05:00
Don't defer abandon due to pending
This commit is contained in:
parent
3c1b2ed9cb
commit
5d0f6e75b4
1 changed files with 1 additions and 1 deletions
|
|
@ -1628,7 +1628,7 @@ connection_input(
|
|||
defer = "too many executing";
|
||||
} else if (conn->c_conn_state == SLAP_C_BINDING ) {
|
||||
defer = "binding";
|
||||
} else if (conn->c_n_ops_pending) {
|
||||
} else if (tag != LDAP_REQ_ABANDON && conn->c_n_ops_pending) {
|
||||
defer = "pending operations";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue