Skip to content

Commit e75d3d0

Browse files
committed
change links
Signed-off-by: Shoham Elias <shohame@amazon.com>
1 parent d87be12 commit e75d3d0

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

java/client/src/main/java/glide/api/commands/GenericBaseCommands.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,7 +1308,7 @@ CompletableFuture<String> restore(
13081308
* This command is routed depending on the client's {@link ReadFrom} strategy.
13091309
*
13101310
* @since Valkey 7.0 and above.
1311-
* @see <a href="https://valkey.io/commands/sort_ro/">valkey.io</a> for details.
1311+
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> for details.
13121312
* @param key The key of the list, set, or sorted set to be sorted.
13131313
* @return An <code>Array</code> of sorted elements.
13141314
* @example
@@ -1327,7 +1327,7 @@ CompletableFuture<String> restore(
13271327
* This command is routed depending on the client's {@link ReadFrom} strategy.
13281328
*
13291329
* @since Valkey 7.0 and above.
1330-
* @see <a href="https://valkey.io/commands/sort_ro/">valkey.io</a> for details.
1330+
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> for details.
13311331
* @param key The key of the list, set, or sorted set to be sorted.
13321332
* @return An <code>Array</code> of sorted elements.
13331333
* @example
@@ -1349,7 +1349,7 @@ CompletableFuture<String> restore(
13491349
* use of {@link SortOptions#byPattern} and {@link SortOptions#getPatterns} in cluster mode is
13501350
* supported since Valkey version 8.0.
13511351
* @since Valkey 7.0 and above.
1352-
* @see <a href="https://valkey.io/commands/sort_ro/">valkey.io</a> for details.
1352+
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> for details.
13531353
* @param key The key of the list, set, or sorted set to be sorted.
13541354
* @param sortOptions The {@link SortOptions}.
13551355
* @return An <code>Array</code> of sorted elements.
@@ -1376,7 +1376,7 @@ CompletableFuture<String> restore(
13761376
* same slot. The use of {@link SortOptionsBinary#byPattern} and {@link
13771377
* SortOptionsBinary#getPatterns} in cluster mode is supported since Valkey version 8.0.
13781378
* @since Valkey 7.0 and above.
1379-
* @see <a href="https://valkey.io/commands/sort_ro/">valkey.io</a> for details.
1379+
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> for details.
13801380
* @param key The key of the list, set, or sorted set to be sorted.
13811381
* @param sortOptions The {@link SortOptions}.
13821382
* @return An <code>Array</code> of sorted elements.
@@ -1402,7 +1402,7 @@ CompletableFuture<String> restore(
14021402
*
14031403
* @apiNote When in cluster mode, <code>key</code> and <code>destination</code> must map to the
14041404
* same hash slot.
1405-
* @see <a href="https://valkey.io/commands/sort_ro/">valkey.io</a> for details.
1405+
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> for details.
14061406
* @param key The key of the list, set, or sorted set to be sorted.
14071407
* @param destination The key where the sorted result will be stored.
14081408
* @return The number of elements in the sorted key stored at <code>destination</code>.
@@ -1427,7 +1427,7 @@ CompletableFuture<String> restore(
14271427
*
14281428
* @apiNote When in cluster mode, <code>key</code> and <code>destination</code> must map to the
14291429
* same hash slot.
1430-
* @see <a href="https://valkey.io/commands/sort_ro/">valkey.io</a> for details.
1430+
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> for details.
14311431
* @param key The key of the list, set, or sorted set to be sorted.
14321432
* @param destination The key where the sorted result will be stored.
14331433
* @return The number of elements in the sorted key stored at <code>destination</code>.

java/client/src/main/java/glide/api/models/BaseTransaction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6599,7 +6599,7 @@ public <ArgType> T sort(@NonNull ArgType key, @NonNull SortOptions sortOptions)
65996599
* @implNote {@link ArgType} is limited to {@link String} or {@link GlideString}, any other type
66006600
* will throw {@link IllegalArgumentException}.
66016601
* @since Valkey 7.0 and above.
6602-
* @see <a href="https://valkey.io/commands/sort_ro">valkey.io</a> for details.
6602+
* @see <a href="https://valkey.io/commands/sort">valkey.io</a> for details.
66036603
* @param key The key of the list, set, or sorted set to be sorted.
66046604
* @return Command Response - An <code>Array</code> of sorted elements.
66056605
*/
@@ -6621,7 +6621,7 @@ public <ArgType> T sortReadOnly(@NonNull ArgType key) {
66216621
* SortOptions#byPattern} and {@link SortOptions#getPatterns} must hash to the same slot. The
66226622
* use of {@link SortOptions#byPattern} and {@link SortOptions#getPatterns} in cluster mode is
66236623
* supported since Valkey version 8.0.
6624-
* @see <a href="https://valkey.io/commands/sort_ro">valkey.io</a> for details.
6624+
* @see <a href="https://valkey.io/commands/sort">valkey.io</a> for details.
66256625
* @param key The key of the list, set, or sorted set to be sorted.
66266626
* @param sortOptions The {@link SortOptions}.
66276627
* @return Command Response - An <code>Array</code> of sorted elements.

java/client/src/main/java/glide/api/models/commands/SortBaseOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Optional arguments to sort, sortReadOnly, and sortStore commands
1111
*
1212
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> and <a
13-
* href="https://valkey.io/commands/sort_ro/">valkey.io</a>
13+
* href="https://valkey.io/commands/sort/">valkey.io</a>
1414
*/
1515
@SuperBuilder
1616
public abstract class SortBaseOptions {

java/client/src/main/java/glide/api/models/commands/SortOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @apiNote In cluster mode, {@link #byPattern} and {@link #getPatterns} must map to the same hash
1616
* slot as the key, and this is supported only since Valkey version 8.0.
1717
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> and <a
18-
* href="https://valkey.io/commands/sort_ro/">valkey.io</a>
18+
* href="https://valkey.io/commands/sort/">valkey.io</a>
1919
*/
2020
@SuperBuilder
2121
public class SortOptions extends SortBaseOptions {

java/client/src/main/java/glide/api/models/commands/SortOptionsBinary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @apiNote In cluster mode, {@link #byPattern} and {@link #getPatterns} must map to the same hash
1919
* slot as the key, and this is supported only since Valkey version 8.0.
2020
* @see <a href="https://valkey.io/commands/sort/">valkey.io</a> and <a
21-
* href="https://valkey.io/commands/sort_ro/">valkey.io</a>
21+
* href="https://valkey.io/commands/sort/">valkey.io</a>
2222
*/
2323
@SuperBuilder
2424
public class SortOptionsBinary extends SortBaseOptions {

node/src/GlideClusterClient.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ import {
5353
createPubsubShardChannels,
5454
createRandomKey,
5555
createTime,
56-
createUnWatch
56+
createUnWatch,
5757
} from "./Commands";
58-
import {connection_request} from "./ProtobufMessage";
59-
import {ClusterTransaction} from "./Transaction";
58+
import { connection_request } from "./ProtobufMessage";
59+
import { ClusterTransaction } from "./Transaction";
6060

6161
/** An extension to command option types with {@link Routes}. */
6262
export interface RouteOption {

node/tests/GlideClient.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import {
1010
expect,
1111
it,
1212
} from "@jest/globals";
13-
import {BufferReader,BufferWriter} from "protobufjs";
14-
import {v4 as uuidv4} from "uuid";
13+
import { BufferReader, BufferWriter } from "protobufjs";
14+
import { v4 as uuidv4 } from "uuid";
1515
import {
1616
convertGlideRecordToRecord,
1717
Decoder,
@@ -25,9 +25,9 @@ import {
2525
Script,
2626
Transaction,
2727
} from "..";
28-
import {ValkeyCluster} from "../../utils/TestUtils.js";
29-
import {command_request} from "../src/ProtobufMessage";
30-
import {runBaseTests} from "./SharedTests";
28+
import { ValkeyCluster } from "../../utils/TestUtils.js";
29+
import { command_request } from "../src/ProtobufMessage";
30+
import { runBaseTests } from "./SharedTests";
3131
import {
3232
checkFunctionListResponse,
3333
checkFunctionStatsResponse,

0 commit comments

Comments
 (0)