Skip to content
Snippets Groups Projects
Unverified Commit 437aaca4 authored by Cam Saul's avatar Cam Saul Committed by GitHub
Browse files

Merge pull request #8833 from metabase/fix-8832

Metastore code SHOULD NOT barf it API response includes unrecognized keys
parents b2b467dc 933907c9
No related branches found
No related tags found
No related merge requests found
......@@ -41,9 +41,14 @@
(def ^:private ^:const fetch-token-status-timeout-ms 10000) ; 10 seconds
(def ^:private TokenStatus
{:valid s/Bool
:status su/NonBlankString
(s/optional-key :features) [su/NonBlankString]})
{:valid s/Bool
:status su/NonBlankString
(s/optional-key :error-details) (s/maybe su/NonBlankString)
(s/optional-key :features) [su/NonBlankString]
(s/optional-key :trial) s/Bool
(s/optional-key :valid_thru) su/NonBlankString ; ISO 8601 timestamp
;; don't explode in the future if we add more to the response! lol
s/Any s/Any})
(s/defn ^:private fetch-token-status* :- TokenStatus
"Fetch info about the validity of `token` from the MetaStore."
......
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