Skip to content
Snippets Groups Projects
Commit 2eebdf78 authored by Cam Saül's avatar Cam Saül
Browse files

Fix ns sorting and aliases

parent 70389396
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