Skip to content

Commit 0e584c9

Browse files
committed
fix(hermes): disable auth, since auth module is not implemented yet
1 parent abe55e7 commit 0e584c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hermes/bin/src/runtime_extensions/hermes/http_gateway/gateway_task.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ impl Default for Config {
4545
]
4646
.to_vec(),
4747
local_addr: SocketAddr::new([127, 0, 0, 1].into(), GATEWAY_PORT),
48-
is_auth_activate: true,
48+
// TODO(bkioshn): change back when auth module is added
49+
is_auth_activate: false,
4950
}
5051
}
5152
}

0 commit comments

Comments
 (0)