Skip to content

Commit

Permalink
feat(reservations): Backport changes from v4 to v3 (#2617)
Browse files Browse the repository at this point in the history
Effectively this PR will publish `v4` as `v3`.
  • Loading branch information
ajordens committed May 9, 2018
1 parent eca89c4 commit 10bbce9
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -263,7 +263,10 @@ class ReservationReportCachingAgent implements CachingAgent, CustomScheduledAgen
(RESERVATION_REPORTS.ns): [
new MutableCacheData("v1", ["report": v1], [:]),
new MutableCacheData("v2", ["report": v2], [:]),
new MutableCacheData("v3", ["report": v3], [:]),

// temporarily backport the changes from v4 to v3 (leaving v2_5 to be what 'v3' used to be)
new MutableCacheData("v2_5", ["report": v3], [:]),
new MutableCacheData("v3", ["report": v4], [:]),
new MutableCacheData("v4", ["report": v4], [:])
]
)
Expand Down

0 comments on commit 10bbce9

Please sign in to comment.