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
DX-2161: fall back to returning the message string if message is not …
…parsable (#1391)
* fix: fall back to returning the message string if message is not parsable
when the message was a string, we tried to parse which got an error. Also, test durations were too short and we were getting the subscribe event instead of the message event
* fix: publish message as string instead of JSON stringified format
feat: add withtypes option to the scan command (#1376)
* feat: add withtypes option to the scan command
* fix: use describe instead of test and fix tests
---------
Co-authored-by: CahidArda <cahidardaooz@hotmail.com>
DX-1839: exclude some commands from auto pipeline (#1373)
* feat: exclude some commands from auto pipeline
excluded some commands that may take a long time from the auto pipeline
* fix: flaky tests
* fix: exclude more scan commands
Don't use Array.shift in custom deserializers (#1364)
* Don't use Array.shift in custom deserializers
It is not a O(1) operation in Node.js (V8 engine). So, custom deserializers
that were using it extensively like hgetall was running extremely slow
on large payloads.
We are now using plain indexing to achieve the same thing.
* don't use deprecated wrangler command in the ci