3/3 threads resolved
changed milestone to %sprint: Jolly Jellyfish
added MR::Awaiting Review Priority::2 - Normal Product::Wallet Squad::Blue Type::Feature scoped labels
added 6 commits
- 01b11f8d - (fix) Rewards\Contributions: Fix typo in word contribution - #587
- c036456b - (fix) Spec bootstrap should load configs (prevents errors connecting to Redis and MQ in dev) - #587
- d0425dd2 - (chore) Add missing help descriptions to rewards cli controller - #587
- 444c6081 - (feat) Add missing type hints in Contributions Manager - #588
- f150613d - (feat) Add action types help text and dry run warning to rewards cli - #587
- 18084897 - (feat) Apply the user state reward multiplier to contribution scores - #587
Toggle commit listadded 2 commits
- c11424f2 - (fix) Record null value for old contributions score by omitting from INSERT query - #587
- d7f0d443 - (feat) Add current reward factor to contributions api - #661 (closed)
added 1 commit
unmarked as a Work In Progress
- Developer
NOTE: Requires schema changes to
minds.contributions
:ALTER TABLE minds.contributions ADD score_decimal decimal;
DROP MATERIALIZED VIEW minds.contributions_by_timestamp; CREATE MATERIALIZED VIEW minds.contributions_by_timestamp AS SELECT timestamp, user_guid, metric, amount, score, score_decimal FROM minds.contributions WHERE user_guid IS NOT NULL AND timestamp IS NOT NULL AND metric IS NOT NULL AND amount IS NOT NULL PRIMARY KEY (timestamp, user_guid, metric) WITH CLUSTERING ORDER BY (user_guid ASC, metric ASC);
- Resolved by Guy Thouret
- Resolved by Guy Thouret
- Resolved by Guy Thouret
added 1 commit
- 2d9337ef - (chore) Convert a rogue tab in whitespace to spaces
resolved all threads
added 1 commit
Please register or sign in to reply