Skip to content

Commit

Permalink
remove panic - left over from debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gdamore committed Dec 16, 2024
1 parent 943cafb commit 26b0b11
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/core/pipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,6 @@ pipe_create(nni_pipe **pp, nni_sock *sock, nni_sp_tran *tran, nni_dialer *d,
rv2 = tops->p_init(tran_data, p);
rv3 = pops->pipe_init(proto_data, p, sock_data);
if (rv1 != 0 || rv2 != 0 || rv3 != 0) {
nni_panic("HERE");
nni_pipe_close(p);
nni_pipe_rele(p);
return (rv1 ? rv1 : rv2 ? rv2 : rv3);
Expand Down

0 comments on commit 26b0b11

Please sign in to comment.