Commit 52bbd38
committed
Fix RocksDB test 5: correct ldb put command syntax
The ldb put command requires key and value as separate arguments,
not piped input. Changed from:
echo "testvalue" | ldb put testkey ...
To:
ldb put testkey testvalue ...
This fixes the error: 'Failed: <key> and <value> must be specified for the put command'1 parent 65309ec commit 52bbd38
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
171 | 171 | | |
172 | 172 | | |
173 | 173 | | |
174 | | - | |
175 | | - | |
| 174 | + | |
| 175 | + | |
176 | 176 | | |
177 | 177 | | |
178 | 178 | | |
| |||
0 commit comments