fix(tools): cache logs player handle append as redis append (#615)

Signed-off-by: ashotland <ari@dragonflydb.io>

Signed-off-by: ashotland <ari@dragonflydb.io>
This commit is contained in:
ashotland 2022-12-28 16:04:53 +02:00 committed by GitHub
parent 5638f65226
commit 92454c6fc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,7 @@ class TwitterCacheTraceParser:
elif operation == 'cas':
cmd.args = ["SET", key, synthetic_value]
elif operation == 'append':
cmd.args = ["SET", key, synthetic_value]
cmd.args = ["APPEND", key, synthetic_value]
elif operation == 'prepend':
cmd.args = ["SET", key, synthetic_value]
elif operation == 'delete':