Skip to content

Commit da4bd95

Browse files
committed
fix: publish subscribe fail
1 parent bc78fe4 commit da4bd95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

authServer/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ use std::collections::HashMap;
44
use tracing::Level;
55
use tracing_subscriber::EnvFilter;
66

7-
const PUBLISH: &str = "1";
8-
const SUBSCRIBE: &str = "2";
7+
const PUBLISH: &str = "2";
8+
const SUBSCRIBE: &str = "1";
99
#[handler]
1010
async fn auth(req: &mut Request, res: &mut Response) {
1111
let params = match parse_params(req).await {

0 commit comments

Comments
 (0)