Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.4

- fix start_thread_pool_server undefined Setting error

## 0.2.3

- clear service instance params before set
Expand Down
13 changes: 6 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
PATH
remote: .
specs:
sails (0.2.3)
sails (0.2.4)
activesupport (> 3.2.0)
thor
thrift (>= 0.9.0)

GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.6)
activesupport (5.0.0.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
concurrent-ruby (1.0.2)
dalli (2.7.1)
diff-lcs (1.2.5)
i18n (0.7.0)
json (1.8.3)
minitest (5.9.1)
minitest (5.10.1)
rspec (3.1.0)
rspec-core (~> 3.1.0)
rspec-expectations (~> 3.1.0)
Expand All @@ -32,7 +31,7 @@ GEM
rspec-mocks (3.1.3)
rspec-support (~> 3.1.0)
rspec-support (3.1.2)
thor (0.19.1)
thor (0.19.4)
thread_safe (0.3.5)
thrift (0.9.3.0)
tzinfo (1.2.2)
Expand Down
2 changes: 1 addition & 1 deletion lib/sails/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def start_thread_pool_server!
@server = ::Thrift::ThreadPoolServer.new(processor, transport, transport_factory, protocol_factory, config.thread_size)

logger.info "Boot on: #{Sails.root}"
logger.info "[#{Time.now}] Starting the Sails with ThreadPool size: #{Setting.pool_size}..."
logger.info "[#{Time.now}] Starting the Sails with ThreadPool size: #{config.thread_size}..."
logger.info "serve: 127.0.0.1:#{config.thread_port}"

begin
Expand Down
2 changes: 1 addition & 1 deletion lib/sails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Sails
def self.version
"0.2.3"
"0.2.4"
end
end