aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/bin/math_server.rb
diff options
context:
space:
mode:
authorGravatar Tim Emiola <temiola@google.com>2015-04-16 12:56:11 -0700
committerGravatar Tim Emiola <temiola@google.com>2015-04-16 13:55:05 -0700
commit321871ee6e09373723b400b28e6d08bd18fac629 (patch)
treec5576368d456d1676aeb9982fc8c1bc3a60715e0 /src/ruby/bin/math_server.rb
parent9558460b77d12deca7db0ecb2a43bf87a846baba (diff)
Updates the example servers to use #run_till_terminated
Diffstat (limited to 'src/ruby/bin/math_server.rb')
-rwxr-xr-xsrc/ruby/bin/math_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/bin/math_server.rb b/src/ruby/bin/math_server.rb
index 5cc7613489..1bfe253b85 100755
--- a/src/ruby/bin/math_server.rb
+++ b/src/ruby/bin/math_server.rb
@@ -183,7 +183,7 @@ def main
end
s.handle(Calculator)
- s.run
+ s.run_till_terminated
end
main