aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClombrong <cromblong@egregore.fun>2025-08-14 22:21:07 +0200
committerClombrong <cromblong@egregore.fun>2025-08-14 22:21:07 +0200
commitff7765b631e9b2a6c7c2d1e849e200b1b6c8c949 (patch)
tree41979fcc195597a9edc4e19b66317f8c82a1e76e
parent05416c1df66b376fc135a7202505c66ee49d71a6 (diff)
fix(stream): remove the infamous Success! message
-rw-r--r--lib/stream.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream.ml b/lib/stream.ml
index e2fe707..b4d5833 100644
--- a/lib/stream.ml
+++ b/lib/stream.ml
@@ -87,7 +87,7 @@ let negotiate feature portal {starttls; sasl; _} : unit Lwt.t =
let* auth_result = authenticate portal sasl mechanisms
in match auth_result with
| Error err -> Lwt.fail_with (parse_auth_error err)
- | Ok _ -> print_endline "Success!"; Lwt.return_unit
+ | Ok _ -> Lwt.return_unit
else Lwt.fail InsufficientEncryption
in
let open Feature in