- fix typo

- clean up
 - bind to port 8900
This commit is contained in:
Richard Alam 2020-02-13 14:30:06 -08:00
parent 0d96ec7563
commit 3c44827895
4 changed files with 3 additions and 5 deletions

View File

@ -42,8 +42,6 @@ object Dependencies {
// https://mvnrepository.com/artifact/com.typesafe.akka/akka-http-spray-json
val akkaHttpSprayJson = "com.typesafe.akka" %% "akka-http-spray-json" % Versions.akkaHttpVersion
// val akkaHttpSprayJson = "com.typesafe.akka" % "akka-http-spray-json" % Versions.akkaHttpVersion
val logback = "ch.qos.logback" % "logback-classic" % Versions.logback
val commonsCodec = "commons-codec" % "commons-codec" % Versions.codec

View File

@ -79,7 +79,7 @@ public interface IVoiceConferenceService {
void freeswitchStatusReplyEvent(Long sendCommandTimestamp,
List<String> status,
Long receivedResponsTimestatmp);
Long receivedResponseTimestamp);
void freeswitchHeartbeatEvent(Map<String, String> heartbeat);
}

View File

@ -308,7 +308,7 @@ class VoiceConferenceService(healthz: HealthzService,
def freeswitchStatusReplyEvent(
sendCommandTimestamp: java.lang.Long,
status: java.util.List[String],
receivedResponsTimestatmp: java.lang.Long
receivedResponseTimestamp: java.lang.Long
): Unit = {
//println("***** >>>> " + sendCommandTimestamp)
//println(json)

View File

@ -40,6 +40,6 @@ redis {
http {
interface = "127.0.0.1"
interface = ${?INTERFACE}
port = 9000
port = 8900
port = ${?PORT}
}