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
Branches backport-d0796ab47e6606a3d6cd9e4e06d056ef1b9c7f24
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