in src/main/java/com/googlesource/gerrit/plugins/its/phabricator/PhabricatorItsFacade.java [66:75]
public boolean exists(final String bugId) throws IOException {
Boolean ret = false;
int task_id = Integer.parseInt(bugId);
try {
ret = (conduit.maniphestSearch(task_id) != null);
} catch (ConduitException e) {
throw new IOException("Could not check existence of task " + task_id, e);
}
return ret;
}