mirror of
https://github.com/penpot/penpot.git
synced 2025-04-05 03:21:26 -05:00
🐛 Fix unexpected exception on pprint error.
This commit is contained in:
parent
4e43bf5f78
commit
412a3c923b
2 changed files with 12 additions and 6 deletions
|
@ -29,10 +29,12 @@
|
|||
:public-uri "http://localhost:3449/"
|
||||
:redis-uri "redis://localhost/0"
|
||||
|
||||
:storage-backend :fs
|
||||
:storage-fs-old-directory "resources/public/media"
|
||||
:storage-fs-directory "resources/public/assets"
|
||||
:storage-fs-uri "http://localhost:3449/internal/assets/"
|
||||
:storage-s3-region :eu-central-1
|
||||
:storage-s3-bucket "penpot-devenv-assets-pre"
|
||||
|
||||
:image-process-max-threads 2
|
||||
|
||||
|
@ -223,7 +225,3 @@
|
|||
|
||||
(def default-deletion-delay
|
||||
(dt/duration {:hours 48}))
|
||||
|
||||
(prefer-method print-method
|
||||
clojure.lang.IRecord
|
||||
clojure.lang.IDeref)
|
||||
|
|
|
@ -12,11 +12,12 @@
|
|||
[app.config :as cfg]
|
||||
[app.common.data :as d]
|
||||
[app.util.time :as dt]
|
||||
[clojure.pprint :as pprint]
|
||||
[clojure.tools.logging :as log]
|
||||
[integrant.core :as ig]))
|
||||
|
||||
;; Set value for all new threads bindings.
|
||||
(alter-var-root #'*assert* (constantly (:assets-enabled cfg/config)))
|
||||
(alter-var-root #'*assert* (constantly (:asserts-enabled cfg/config)))
|
||||
|
||||
(derive :app.telemetry/server :app.http/server)
|
||||
|
||||
|
@ -85,7 +86,6 @@
|
|||
:svgparse (ig/ref :app.svgparse/handler)
|
||||
:storage (ig/ref :app.storage/storage)}
|
||||
|
||||
|
||||
:app.svgparse/svgc
|
||||
{:metrics (ig/ref :app.metrics/metrics)}
|
||||
|
||||
|
@ -299,6 +299,14 @@
|
|||
(when sys (ig/halt! sys))
|
||||
nil)))
|
||||
|
||||
(prefer-method print-method
|
||||
clojure.lang.IRecord
|
||||
clojure.lang.IDeref)
|
||||
|
||||
(prefer-method pprint/simple-dispatch
|
||||
clojure.lang.IPersistentMap
|
||||
clojure.lang.IDeref)
|
||||
|
||||
(defn -main
|
||||
[& _args]
|
||||
(start))
|
||||
|
|
Loading…
Add table
Reference in a new issue