File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -74,3 +74,8 @@ migrate-do dbconnection:
74
74
## Update sqlx offline mode
75
75
sqlx-prepare :
76
76
cargo sqlx prepare --workspace
77
+
78
+ ## MacOS - fix ulimit
79
+ # https://github.com/WeareJH/config-gen/issues/44
80
+ fix-ulimit :
81
+ ulimit -n 2048
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ pub async fn send_confirmation_email(
60
60
email_client : & EmailClient ,
61
61
new_subscriber : NewSubscriber ,
62
62
) -> Result < ( ) , reqwest:: Error > {
63
- let confirmation_link = "zero2prod-example.com /subscriptions/confirm?subscription_token=1234" ;
63
+ let confirmation_link = "https://127.0.0.1 /subscriptions/confirm?subscription_token=1234" ;
64
64
let plain_body = format ! (
65
65
"Welcome to our newsletter!\n Visit {} to confirm your subscription." ,
66
66
confirmation_link
You can’t perform that action at this time.
0 commit comments