Skip to content

Commit

Permalink
Fixes from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas ONeil <lucasoneil@gmail.com>
  • Loading branch information
loneil committed Mar 22, 2024
1 parent 0112992 commit 36c4da8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 1 addition & 6 deletions load-agent/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,12 +271,7 @@ const pingMediator = async (agent) => {
}

let deleteOobRecordById = async (agent, id) => {
try {
const resp = await agent.oob.deleteById(id);

} catch (error) {
process.stderr.write('ERROR'+ '\n' + error + '\n')
}
await agent.oob.deleteById(id);
};

let receiveInvitation = async (agent, invitationUrl) => {
Expand Down
2 changes: 0 additions & 2 deletions load-agent/locustClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,6 @@ def delete_oob(self, id):

line = self.readjsonline()

return ""

@stopwatch
def accept_invite(self, invite):
try:
Expand Down

0 comments on commit 36c4da8

Please sign in to comment.