Skip to content
Snippets Groups Projects
Commit cd43de3f authored by Cam Saül's avatar Cam Saül Committed by GitHub
Browse files

Merge pull request #5258 from metabase/fix-ns-declaration

Fix ns sorting and aliases
parents 70389396 2eebdf78
No related branches found
No related tags found
No related merge requests found
(ns metabase.util.ssh
(:require [clojure.tools.logging :as log]
[clojure.string :as string]
(:require [clojure.string :as str]
[clojure.tools.logging :as log]
[metabase.util :as u])
(:import com.jcraft.jsch.JSch))
......@@ -21,7 +21,7 @@
(.setPortForwardingL 0 host port))
input-port (some-> (.getPortForwardingL connection)
first
(string/split #":")
(str/split #":")
first
(Integer/parseInt))]
(assert (number? input-port))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment