mike
mike
Hello, I have faced the same error. Error in docker-compose file. For handling the issue I changed the line https://github.com/0xProject/0x-api/blob/master/docker-compose.yml#L39 to `./0x_mesh_test:/home//mesh/0x_mesh` also I had an issue with postgresql, and...
did you use single-quote? because I got normal response: ``` Http("http://elastic:elastic@localhost:9200").asString val res0: scalaj.http.HttpResponse[String] = HttpResponse({ "name" : "2057040aa337", "cluster_name" : "docker-cluster", "cluster_uuid" : "_hRP22GdTuy9Y1UfH2VeLg", "version" : { "number" :...
hm, how did you run elasticsearch ? I ran with the next command: ``` docker run -p 9200:9200 -p 9301:9301 --name elastic -e "discovery.type=single-node" -e "xpack.security.enabled=true" -e "ELASTIC_PASSWORD=elastic" -e "ELASTIC_PASSWORD=elastic"...
you are right, without directly calling the `.auth` method scalaj do not parse and send the `Authorization` header. as a solution, just call `.auth` or make a wrapper.
1. create new setup: `enable_smart_updates` 2. create a migration for ^ 3. ??? create `freq_table` 4. on every success? update `freq_table` 5. on source actor start if `smart_update` is enabled...
save plugin _ source relation ? fallback to default plugin
provide `plugin_setup_db source` to each Plugin ```scala class MyPlugin(dbSetupSource) extends BasePlugin { def matchedUrl(url: String): Boolean = ??? // callbacks on Favorite/ReadUnread/Custom-Call def onAction(source) = ??? def onAction(feed: Feed) =...
It's simpy. Set `@setup_for_rocket_tag` in `true` before `attr_taggable` calling. For example ``` class Post < AR::B @setup_for_rocket_tag = true attr_taggable :tags end ``` Now preload disabled.
try this: ``` #config/initializers/taggable.rb module RocketTag::Taggable::ClassMethods def popular(options = {}) # Grab the current scope s = select{"id"} # Grab table name t = self.to_s q = RocketTag::Tag.joins{taggings}. where{taggings.taggable_type==t}. #...
you deleted files with migrations?