I think we can save on HTTP Request in drush_drush_ddoto_post_comment().
drush_drush_ddoto_post_comment calls $client->getForm($nid) and later we do the same request in $client->postComment(). We should try to inject an existing form element in postComment.
I think we can save on HTTP Request in
drush_drush_ddoto_post_comment()
.drush_drush_ddoto_post_comment calls
$client->getForm($nid)
and later we do the same request in$client->postComment()
. We should try to inject an existing form element in postComment.