Skip to content

Commit

Permalink
Changed break to continue when QueryException is caught
Browse files Browse the repository at this point in the history
Change the QueryException to a continue to allow the loop to continue.  See #547 for more information.
  • Loading branch information
Austinb authored Jun 7, 2020
1 parent 60a8140 commit 43efc3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GameQ/GameQ.php
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ protected function doQueries()
throw new \Exception($e->getMessage(), $e->getCode(), $e);
}

break;
continue;
}

// Clean up the sockets, if any left over
Expand Down

0 comments on commit 43efc3d

Please sign in to comment.