-
Notifications
You must be signed in to change notification settings - Fork 32
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
Update README.md #102
base: master
Are you sure you want to change the base?
Update README.md #102
Conversation
Update to Java @alex-litvak |
Assert.assertEquals(Alert.typeProgressive, info.getAlerts().get(0).getType()); | ||
Assert.assertEquals("some_q", info.getAlerts().get(0).getQueue()); | ||
} | ||
|
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.
@Ayodejiola If you delete the whole method - you should delete all the headers and lines. In this case you should delete all the lines between 659 and 677
|
||
/** | ||
* Delete alerts from a queue. If there is no queue, an EmptyQueueException is thrown. | ||
* @param alert_ids The array list of alert ids. | ||
* @throws io.iron.ironmq.HTTPException If the IronMQ service returns a status other than 200 OK. | ||
* @throws java.io.IOException If there is an error accessing the IronMQ server. | ||
*/ |
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.
lines 797 - 799 should also be deleted
* @throws InterruptedException | ||
*/ | ||
@Test(expected = HTTPException.class) | ||
public void testDeleteQueue() throws IOException, InterruptedException { |
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.
Why do you delete this?
|
||
/** | ||
* Delete alerts from a queue. If there is no queue, an EmptyQueueException is thrown. | ||
* @param alert_ids The array list of alert ids. | ||
|
||
* @throws io.iron.ironmq.HTTPException If the IronMQ service returns a status other than 200 OK. | ||
* @throws java.io.IOException If there is an error accessing the IronMQ server. | ||
*/ |
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.
lines that should be deleted
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.
Can't find these. Did you delete it already?
@@ -785,59 +779,23 @@ public QueueModel update(QueueModel model) throws IOException { | |||
} | |||
|
|||
/** | |||
* Add alerts to a queue. If there is no queue, an EmptyQueueException is thrown. | |||
* @param alerts The array list of alerts. | |||
* @throws io.iron.ironmq.HTTPException If the IronMQ service returns a status other than 200 OK. | |||
* @throws java.io.IOException If there is an error accessing the IronMQ server. | |||
*/ |
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.
lines that should be deleted as well
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.
Can't find these. Did you delete it already?
Restored deleted lines
No description provided.