It was set, but never read.
http_client_connection_detach_peer(conn);
conn->peer = peer;
- conn->debug = peer->client->set.debug;
array_push_back(&peer->conns, &conn);
}
}
conn->refcount = 1;
conn->ppool = ppool;
conn->peer = peer;
- conn->debug = client->set.debug;
if (pshared->addr.type != HTTP_CLIENT_PEER_ADDR_RAW)
i_array_init(&conn->request_wait_list, 16);
conn->io_wait_timer = io_wait_timer_add_to(cctx->ioloop);
bool output_locked:1; /* Output is locked; no pipelining */
bool output_broken:1; /* Output is broken; no more requests */
bool in_req_callback:1; /* Performing request callback (busy) */
- bool debug:1;
};
struct http_client_peer_shared {