This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Watchdog | |
#------------------------------------------------------------------------------ | |
use_watchdog = on | |
delegate_IP = '10.10.10.100' | |
wd_hostname = '10.10.10.21' | |
wd_port = 9000 | |
ifconfig_path = '/usr/bin' | |
arping_path = '/usr/bin' | |
if_up_cmd = 'sudo ip addr add $_IP_$ dev eth0' | |
if_down_cmd = 'sudo ip addr del $_IP_$ dev eth0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.github.tototoshi.finagle_hack | |
import java.net.InetSocketAddress | |
import com.twitter.finagle.{Service, SimpleFilter} | |
import com.twitter.util.Future | |
import com.twitter.finagle.builder.{Server, ServerBuilder} | |
import com.twitter.finagle.http._ | |
import com.twitter.finagle.http.path._ | |
object HTTPServer { |