Commit f9690b50 authored by Alexandre Delanoë's avatar Alexandre Delanoë

Merge branch 'dev-charts-update-economy' of...

Merge branch 'dev-charts-update-economy' of ssh://gitlab.iscpif.fr:20022/gargantext/haskell-gargantext into dev-merge
parents 30953027 87c88da5
...@@ -358,17 +358,17 @@ tableNgramsPut tabType listId (Versioned p_version p_table) ...@@ -358,17 +358,17 @@ tableNgramsPut tabType listId (Versioned p_version p_table)
pure () pure ()
Just cId -> do Just cId -> do
printDebug "[tableNgramsPut] updating scatter cId" cId printDebug "[tableNgramsPut] updating scatter cId" cId
_ <- Metrics.updateScatter cId Nothing tabType Nothing _ <- Metrics.updateScatter cId (Just listId) tabType Nothing
printDebug "[tableNgramsPut] updating chart cId" cId printDebug "[tableNgramsPut] updating chart cId" cId
_ <- Metrics.updateChart cId Nothing tabType Nothing _ <- Metrics.updateChart cId (Just listId) tabType Nothing
printDebug "[tableNgramsPut] updating pie cId" cId printDebug "[tableNgramsPut] updating pie cId" cId
_ <- Metrics.updatePie cId Nothing tabType Nothing _ <- Metrics.updatePie cId (Just listId) tabType Nothing
printDebug "[tableNgramsPut] updating tree StopTerm, cId" cId printDebug "[tableNgramsPut] updating tree StopTerm, cId" cId
_ <- Metrics.updateTree cId Nothing tabType StopTerm _ <- Metrics.updateTree cId (Just listId) tabType StopTerm
printDebug "[tableNgramsPut] updating tree CandidateTerm, cId" cId printDebug "[tableNgramsPut] updating tree CandidateTerm, cId" cId
_ <- Metrics.updateTree cId Nothing tabType CandidateTerm _ <- Metrics.updateTree cId (Just listId) tabType CandidateTerm
printDebug "[tableNgramsPut] updating tree MapTerm, cId" cId printDebug "[tableNgramsPut] updating tree MapTerm, cId" cId
_ <- Metrics.updateTree cId Nothing tabType MapTerm _ <- Metrics.updateTree cId (Just listId) tabType MapTerm
pure () pure ()
pure ret pure ret
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment