This commit is contained in:
Travis Reeder
2017-10-09 19:26:40 -06:00
parent d080c23981
commit 633b26594e
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,6 @@ func (s *Server) serve(c *gin.Context, appName, path string) {
return return
} }
err = doCall(call)
err = s.Agent.Submit(call) err = s.Agent.Submit(call)
if err != nil { if err != nil {
// NOTE if they cancel the request then it will stop the call (kind of cool), // NOTE if they cancel the request then it will stop the call (kind of cool),

View File

@@ -19,7 +19,8 @@ The following listener types are supported:
### Creating a Listener ### Creating a Listener
You can easily use app and runner listeners by creating a struct with valid methods satisfying the interface for the respective listener and adding it to the Fn API You can easily use add listeners by creating a struct with valid methods satisfying the interface
for the respective listener, adding it to `main.go` then compiling.
Example: Example: