Skip to content

Commit d26d38b

Browse files
committed
Set request method to POST
1 parent ec8ab9c commit d26d38b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Solr/Resource/ResourceFacade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function setSolrService($storeId, $service)
114114
*/
115115
public function search($storeId, $query, $offset = 0, $limit = 10, $params = array())
116116
{
117-
$response = $this->getSolrService($storeId)->search($query, $offset, $limit, $params);
117+
$response = $this->getSolrService($storeId)->search($query, $offset, $limit, $params, \Apache_Solr_Service::METHOD_POST);
118118
return new ResponseDecorator($response);
119119
}
120120

src/Solr/Util/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class Version
1313
{
14-
const VERSION = '1.0.1';
14+
const VERSION = '1.0.2';
1515

1616
static public function getVersion()
1717
{

0 commit comments

Comments
 (0)