Skip to content

Commit

Permalink
[tmp] [#431] Temp debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jul 10, 2023
1 parent 64a52d8 commit 3037ab3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions example-project/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso.examples/sente "1.18.1"
(defproject com.taoensso.examples/sente "1.18.2-SNAPSHOT"
:description "Sente, reference web-app example project"
:url "https://github.com/ptaoussanis/sente"
:license {:name "Eclipse Public License"
Expand All @@ -15,7 +15,7 @@
[org.clojure/core.async "1.6.673"]
[nrepl "1.0.0"] ; Optional, for Cider

[com.taoensso/sente "1.18.1"] ; <--- Sente
[com.taoensso/sente "1.18.2-SNAPSHOT"] ; <--- Sente
[com.taoensso/timbre "6.2.1"]

;;; TODO Choose (uncomment) a supported web server -----------------------
Expand Down
2 changes: 1 addition & 1 deletion example-project/src/example/server.clj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
(timbre/set-ns-min-level! level) ; Min log level for this namespace
(reset! min-log-level_ level))

(set-min-log-level! :debug)
(set-min-log-level! :report)

;;;; Define our Sente channel socket (chsk) server

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/sente "1.18.1"
(defproject com.taoensso/sente "1.18.2-SNAPSHOT"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Realtime web comms for Clojure/Script"
:url "https://github.com/ptaoussanis/sente"
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/sente.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@
;; The feature can be enabled early by manually providing a
;; `ws-ping-timeout-ms` val in opts.
;;
ws-ping-timeout-ms nil #_(enc/ms :secs 5) ; TODO Enable default val
ws-ping-timeout-ms #_nil (enc/ms :secs 5) ; TODO Enable default val

send-buf-ms-ajax 100
send-buf-ms-ws 30
Expand Down

0 comments on commit 3037ab3

Please sign in to comment.