Skip to content
Snippets Groups Projects
Verified Commit 6b38f42d authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

daemon/worker: re-activate assertion

The problem has been fixed, apparently.
parent d5f80fc1
Branches
Tags
1 merge request!733various nitpicks, mainly docs
......@@ -135,7 +135,7 @@ static uv_handle_t *ioreq_spawn(struct worker_ctx *worker,
bool precond = (socktype == SOCK_DGRAM || socktype == SOCK_STREAM)
&& (family == AF_INET || family == AF_INET6);
if (!precond) {
/* assert(false); see #245 */
assert(false);
kr_log_verbose("[work] ioreq_spawn: pre-condition failed\n");
return NULL;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment