Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
- Added missing raw string modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmellado committed Apr 25, 2020
1 parent e21661d commit 3de6f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/command/commands.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1217,12 +1217,12 @@ class Commands<K, V> extends ModuleBase
int timeout,
bool noack = false}) =>
run<Map<K, List<StreamEntry<K, V>>>>(
<Object>[r'XREADGROUP', 'GROUP', group, consumer]
<Object>[r'XREADGROUP', r'GROUP', group, consumer]
..add(count == null ? null : r'COUNT')
..add(count)
..add(timeout == null ? null : r'BLOCK')
..add(timeout)
..add(noack ? 'NOACK' : null)
..add(noack ? r'NOACK' : null)
..add(r'STREAMS')
..add(key)
..addAll(keys)
Expand Down

0 comments on commit 3de6f27

Please sign in to comment.