Skip to content

Commit 1d6fcb9

Browse files
author
Simon MacMullen
committed
stable to default
2 parents 255bc36 + 8a0b626 commit 1d6fcb9

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

projects/client/RabbitMQ.Client/src/client/api/IModel.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,6 @@ public interface IModel: IDisposable
154154
[AmqpUnsupported("RabbitMQ.Client.Framing.v0_9_1")]
155155
IStreamProperties CreateStreamProperties();
156156

157-
///<summary>(Spec method) Channel flow control functionality.</summary>
158-
///<remarks>
159-
///</remarks>
160-
[return: AmqpFieldMapping(null, "active")]
161-
void ChannelFlow(bool active);
162-
163157
///<summary>(Spec method) Declare an exchange.</summary>
164158
///<remarks>
165159
///The exchange is declared non-passive and non-internal.

projects/client/RabbitMQ.Client/src/client/impl/ModelBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,8 +779,6 @@ public void FinishClose()
779779
public abstract IFileProperties CreateFileProperties();
780780
public abstract IStreamProperties CreateStreamProperties();
781781

782-
public abstract void ChannelFlow(bool active);
783-
784782
public void ExchangeDeclare(string exchange, string type, bool durable, bool autoDelete, IDictionary<string, object> arguments)
785783
{
786784
_Private_ExchangeDeclare(exchange, type, false, durable, autoDelete, false, false, arguments);

projects/client/Unit/src/unit/TestSsl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void SendReceive(ConnectionFactory cf) {
5959
ch.BasicPublish("Exchange_TestSslEndPoint", "Key_TestSslEndpoint", null, msgBytes);
6060

6161
bool noAck = false;
62-
BasicGetResult result = ch.BasicGet("Queue_TestSslEndpoint", noAck);
62+
BasicGetResult result = ch.BasicGet(qName, noAck);
6363
byte[] body = result.Body;
6464
string resultMessage = System.Text.Encoding.UTF8.GetString(body);
6565

0 commit comments

Comments
 (0)