Skip to content

Commit 5b258fa

Browse files
committed
Adress PR comments, removing CAN_BE_OFFLOADED flag
Signed-off-by: Uri Yagelnik <[email protected]>
1 parent 2ef2a4a commit 5b258fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+91
-118
lines changed

src/commands.def

Lines changed: 33 additions & 33 deletions
Large diffs are not rendered by default.

src/commands/get.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"function": "getCommand",
99
"command_flags": [
1010
"READONLY",
11-
"FAST",
12-
"CAN_BE_OFFLOADED"
11+
"FAST"
1312
],
1413
"acl_categories": [
1514
"STRING"

src/commands/hexists.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"function": "hexistsCommand",
99
"command_flags": [
1010
"READONLY",
11-
"FAST",
12-
"CAN_BE_OFFLOADED"
11+
"FAST"
1312
],
1413
"acl_categories": [
1514
"HASH"

src/commands/hget.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"function": "hgetCommand",
99
"command_flags": [
1010
"READONLY",
11-
"FAST",
12-
"CAN_BE_OFFLOADED"
11+
"FAST"
1312
],
1413
"acl_categories": [
1514
"HASH"

src/commands/hgetall.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"arity": 2,
88
"function": "hgetallCommand",
99
"command_flags": [
10-
"READONLY",
11-
"CAN_BE_OFFLOADED"
10+
"READONLY"
1211
],
1312
"acl_categories": [
1413
"HASH"

src/commands/hkeys.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"arity": 2,
88
"function": "hkeysCommand",
99
"command_flags": [
10-
"READONLY",
11-
"CAN_BE_OFFLOADED"
10+
"READONLY"
1211
],
1312
"acl_categories": [
1413
"HASH"

src/commands/hlen.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"function": "hlenCommand",
99
"command_flags": [
1010
"READONLY",
11-
"FAST",
12-
"CAN_BE_OFFLOADED"
11+
"FAST"
1312
],
1413
"acl_categories": [
1514
"HASH"

src/commands/hmget.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"function": "hmgetCommand",
99
"command_flags": [
1010
"READONLY",
11-
"FAST",
12-
"CAN_BE_OFFLOADED"
11+
"FAST"
1312
],
1413
"acl_categories": [
1514
"HASH"

src/commands/hrandfield.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"arity": -2,
88
"function": "hrandfieldCommand",
99
"command_flags": [
10-
"READONLY",
11-
"CAN_BE_OFFLOADED"
10+
"READONLY"
1211
],
1312
"acl_categories": [
1413
"HASH"

src/commands/hscan.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"arity": -3,
88
"function": "hscanCommand",
99
"command_flags": [
10-
"READONLY",
11-
"CAN_BE_OFFLOADED"
10+
"READONLY"
1211
],
1312
"acl_categories": [
1413
"HASH"

0 commit comments

Comments
 (0)