Skip to content

Commit

Permalink
Remove nailgun values from config
Browse files Browse the repository at this point in the history
Nailgun was removed with the ssh/scp removal. This commit removes
the configuration values that are now unused.
  • Loading branch information
xeqi committed Oct 19, 2015
1 parent a05c30e commit 16d00d5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion dev-resources/config.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{:port 8080
:bind "0.0.0.0"
:nailgun-bind "127.0.0.1"
:db {:classname "org.sqlite.JDBC"
:subprotocol "sqlite"
:subname "data/dev_db"}
Expand Down
5 changes: 0 additions & 5 deletions src/clojars/config.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
(def default-config
{:port 8080
:bind "0.0.0.0"
:nailgun-bind "127.0.0.1"
:db {:classname "org.sqlite.JDBC"
:subprotocol "sqlite"
:subname "data/db"}
Expand Down Expand Up @@ -68,8 +67,6 @@
["REPO" :repo]
["DELETION_BACKUP_DIR" :deletion-backup-dir]
["NREPL_PORT" :nrepl-port #(Integer/parseInt %)]
["NAILGUN_BIND" :nailgun-bind]
["NAILGUN_PORT" :nailgun-port #(Integer/parseInt %)]
["RELEASES_URL" :releases-url]
["RELEASES_ACCESS_KEY" :releases-access-key]
["RELEASES_SECRET_KEY" :releases-secret-key]
Expand All @@ -95,8 +92,6 @@
["--db" "Database URL like sqlite:data/db"]
["--mail" "SMTP URL like smtps://user:pass@host:[email protected]"]
["--repo" "Path to store jar files in"]
["--nailgun-port" "Listen port for nailgun (for scp)" :parse-fn #(Integer/parseInt %)]
["--nailgun-bind" "Bind address for nailgun" :default (:nailgun-bind defaults)]
["--bcrypt-work-factor" "Difficulty factor for bcrypt password hashing"
:parse-fn #(Integer/parseInt %) :default (:bcrypt-work-factor defaults)]))

Expand Down

0 comments on commit 16d00d5

Please sign in to comment.