Will the new improved search function on Sharetribe.com come to the open source version?

Please make sure the search service is running, by executing this command

 ps aux | grep searchd


if not most probably you’ve run into a MySQL bug caused by the patch,
to get around the bug update => app/indices/listing_index.rb

replace

 has 'RADIANS(locations.latitude)', as: :latitude, type: :float
 has 'RADIANS(locations.longitude)', as: :longitude, type: :float

with

has 'RADIANS(MIN(locations.latitude))', as: :latitude, type: :float
has 'RADIANS(MIN(locations.longitude))', as: :longitude, type: :float

and again

RAILS_ENV=production bundle exec rake ts:stop
RAILS_ENV=production bundle exec rake ts:rebuild
#restart server
#restart delayed jobs