Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/Database/InfluxDB/JSON.hs
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,12 @@ parseSeriesBody = A.withObject "series" $ \obj -> do
return (name, tags, columns, values)

-- | Parse the common JSON structure used in failure response.
-- >>> A.parse parseErrorObject $ fromJust $ decode "{ \"error\": \"custom error\" }"
-- Success "custom error"
-- >>> A.parse parseErrorObject $ fromJust $ decode "{ \"message\": \"custom error\" }"
-- Success "custom error"
parseErrorObject :: A.Value -> A.Parser String
parseErrorObject = A.withObject "error" $ \obj -> obj .: "error"
parseErrorObject = A.withObject "error" $ \obj -> obj .: "error" <|> obj .: "message"

-- | Parse either a POSIX timestamp or RFC3339 formatted timestamp as 'UTCTime'.
parseUTCTime :: Precision ty -> A.Value -> A.Parser UTCTime
Expand Down