Skip to content
Snippets Groups Projects
  1. Apr 14, 2021
  2. Apr 13, 2021
  3. Feb 11, 2021
  4. Feb 09, 2021
    • Vincent Sellier's avatar
      journal_client: Fix date computations for (un)eventful visits · cf32e376
      Vincent Sellier authored
      Fix a wrong computation when several messages (>=3) for the same
      snapshot are received in the wrong order
      For example, before the fix, the following occurs:
      ```
      | date | snapshot |     | last_ev  | last_unev | Snap |
      | ---- | -------- | --- | -------- | --------- | ---- |
      | 2022 | S2       |     | 2022     |           | S2   |
      | 2020 | S2       |     | 2020     | 2022      | S2   |
      | 2021 | S2       |     | **2021** | **2020**  | S2   |
      ```
      
      as it should be:
      ```
      | date | snapshot |     | last_ev  | last_unev | Snap |
      | ---- | -------- | --- | -------- | --------- | ---- |
      | 2022 | S2       |     | 2022     |           | S2   |
      | 2020 | S2       |     | 2020     | 2022      | S2   |
      | 2021 | S2       |     | **2020** | **2022**  | S2   |
      ```
      
      Related to T3000
      cf32e376
  5. Feb 05, 2021
  6. Feb 03, 2021
  7. Feb 01, 2021
  8. Jan 29, 2021
  9. Jan 26, 2021
  10. Jan 25, 2021
  11. Jan 23, 2021
  12. Jan 22, 2021
  13. Jan 21, 2021
  14. Jan 20, 2021
    • David Douard's avatar
      Simplify journal client tests · ffe2aed2
      David Douard authored
      - sort visits by default (there is a test dedicated to dealing with unsorted
        messagaes from the journal),
      - remove "intermediate checks" in several tests: these do not help much
        but make the code more difficult to read and maintain,
      - rename VISIT_STATUSES1 as VISIT_STATUSES_1 to make less prone to
        being confused with VISIT_STATUSES (which also exists).
      ffe2aed2
Loading