You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for cmd, cmd_stats in stats_after_sleep.items():
if "cmdstat_info" != cmd and "cmdstat_replconf" != cmd_stats:
> assert stats[cmd] == cmd_stats, cmd
E AssertionError: cmdstat_multi
E assert equals failed
E { {
E 'calls': 78, 'calls': 79,
E 'usec': 0, 'usec': 0,
E 'usec_per_call': 0, 'usec_per_call': 0,
E }
There are 2 minor issues with this test:
1. It specified `cmdstat_replconf` as `cmd_stats` instead of `cmd`,
that's clearly a typo as `cmd_stats` is a map with stats, while
`replconf` is a Dragonfly command
2. Command `MULTI` is allowed to run even when the server is in paused
state, see
[here](https://github.com/dragonflydb/dragonfly/blob/main/src/server/main_service.cc#L1197):
```
// Don't interrupt running multi commands or admin connections.
```
Fixes#3675
https://github.com/dragonflydb/dragonfly/actions/runs/10752326291/job/29820523129#step:6:700
The text was updated successfully, but these errors were encountered: