mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Docs related to running in production. (#174)
* Fixed up api.md, removed Titan references. * Adding more documentation on running in production. * Update deps for ironmq.
This commit is contained in:
@@ -42,14 +42,14 @@ func timeoutToIDKey(timeout []byte) []byte {
|
||||
return b
|
||||
}
|
||||
|
||||
var delayQueueName = []byte("titan_delay")
|
||||
var delayQueueName = []byte("functions_delay")
|
||||
|
||||
func queueName(i int) []byte {
|
||||
return []byte(fmt.Sprintf("titan_%d_queue", i))
|
||||
return []byte(fmt.Sprintf("functions_%d_queue", i))
|
||||
}
|
||||
|
||||
func timeoutName(i int) []byte {
|
||||
return []byte(fmt.Sprintf("titan_%d_timeout", i))
|
||||
return []byte(fmt.Sprintf("functions_%d_timeout", i))
|
||||
}
|
||||
|
||||
func NewBoltMQ(url *url.URL) (*BoltDbMQ, error) {
|
||||
|
||||
Reference in New Issue
Block a user