-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTN7b #153
RTN7b #153
Conversation
LGTM |
let channel = client.channel("channel") | ||
|
||
waitUntil(timeout: testTimeout) { done in | ||
channel.subscribeToStateChanges { state, status in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is all this subscribe prologue necessary? Can't you just publish to the channel so that the message is queue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you right. queueMessages
is true by default. I will change.
let channel = client.channel("channel") | ||
channel.attach() | ||
|
||
waitUntil(timeout: testTimeout) { done in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tcard Done
LGTM |
No description provided.