diff --git a/src/EventStore.Client.PersistentSubscriptions/EventStorePersistentSubscriptionsClient.Read.cs b/src/EventStore.Client.PersistentSubscriptions/EventStorePersistentSubscriptionsClient.Read.cs
index d97fa0fc3..148ebcf8d 100644
--- a/src/EventStore.Client.PersistentSubscriptions/EventStorePersistentSubscriptionsClient.Read.cs
+++ b/src/EventStore.Client.PersistentSubscriptions/EventStorePersistentSubscriptionsClient.Read.cs
@@ -11,7 +11,7 @@ partial class EventStorePersistentSubscriptionsClient {
///
///
///
- [Obsolete("SubscribeAsync is no longer supported. Use SubscribeToStream with manual acks instead.", true)]
+ [Obsolete("SubscribeAsync is no longer supported. Use SubscribeToStream with manual acks instead.", false)]
public async Task SubscribeAsync(string streamName, string groupName,
Func eventAppeared,
Action? subscriptionDropped = null,
@@ -32,7 +32,7 @@ public async Task SubscribeAsync(string streamName, stri
///
///
///
- [Obsolete("SubscribeToStreamAsync is no longer supported. Use SubscribeToStream with manual acks instead.", true)]
+ [Obsolete("SubscribeToStreamAsync is no longer supported. Use SubscribeToStream with manual acks instead.", false)]
public async Task SubscribeToStreamAsync(string streamName, string groupName,
Func eventAppeared,
Action? subscriptionDropped = null,
@@ -102,7 +102,7 @@ public PersistentSubscriptionResult SubscribeToStream(string streamName, string
///
/// Subscribes to a persistent subscription to $all. Messages must be manually acknowledged
///
- [Obsolete("SubscribeToAllAsync is no longer supported. Use SubscribeToAll with manual acks instead.", true)]
+ [Obsolete("SubscribeToAllAsync is no longer supported. Use SubscribeToAll with manual acks instead.", false)]
public async Task SubscribeToAllAsync(string groupName,
Func eventAppeared,
Action? subscriptionDropped = null,
diff --git a/src/EventStore.Client.Streams/EventStoreClient.Subscriptions.cs b/src/EventStore.Client.Streams/EventStoreClient.Subscriptions.cs
index 78013f31c..f82bd5d07 100644
--- a/src/EventStore.Client.Streams/EventStoreClient.Subscriptions.cs
+++ b/src/EventStore.Client.Streams/EventStoreClient.Subscriptions.cs
@@ -16,7 +16,7 @@ public partial class EventStoreClient {
/// The optional user credentials to perform operation with.
/// The optional .
///
- [Obsolete("SubscribeToAllAsync is no longer supported. Use SubscribeToAll instead.", true)]
+ [Obsolete("SubscribeToAllAsync is no longer supported. Use SubscribeToAll instead.", false)]
public Task SubscribeToAllAsync(
FromAll start,
Func eventAppeared,
@@ -68,7 +68,7 @@ public StreamSubscriptionResult SubscribeToAll(
/// The optional user credentials to perform operation with.
/// The optional .
///
- [Obsolete("SubscribeToStreamAsync is no longer supported. Use SubscribeToStream instead.", true)]
+ [Obsolete("SubscribeToStreamAsync is no longer supported. Use SubscribeToStream instead.", false)]
public Task SubscribeToStreamAsync(string streamName,
FromStream start,
Func eventAppeared,