Skip to content

Commit 7bff035

Browse files
committed
updating deprecation text
1 parent e496ec3 commit 7bff035

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/NRedisStack/Graph/IGraphCommands.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace NRedisStack
55
{
6-
[Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")]
6+
[Obsolete("RedisGraph supported is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")]
77
public interface IGraphCommands
88
{
99
/// <summary>
@@ -140,4 +140,4 @@ public interface IGraphCommands
140140
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
141141
List<List<string>> Slowlog(string graphName);
142142
}
143-
}
143+
}

src/NRedisStack/Graph/IGraphCommandsAsync.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace NRedisStack
55
{
6-
[Obsolete("RedisGraph is not supported since Redis 7.2 (https://redis.com/blog/redisgraph-eol/)")]
6+
[Obsolete("RedisGraph supported is deprecated as of Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)")]
77
public interface IGraphCommandsAsync
88
{
99
/// <summary>
@@ -140,4 +140,4 @@ public interface IGraphCommandsAsync
140140
/// <remarks><seealso href="https://redis.io/commands/graph.slowlog"/></remarks>
141141
Task<List<List<string>>> SlowlogAsync(string graphName);
142142
}
143-
}
143+
}

0 commit comments

Comments
 (0)