mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 15:49:01 +02:00
expire cookie key from setting file length
This commit is contained in:
@@ -44,7 +44,7 @@ module.exports = ClsiCookieManager =
|
||||
serverId = ClsiCookieManager._parseServerIdFromResponse(response)
|
||||
multi = rclient.multi()
|
||||
multi.set buildKey(project_id), serverId
|
||||
multi.expire buildKey(project_id), Settings.clsi_cookie_expire_length
|
||||
multi.expire buildKey(project_id), Settings.clsi_cookie_expire_length_seconds
|
||||
multi.exec (err)->
|
||||
callback(err, serverId)
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ describe "ClsiCookieManager", ->
|
||||
apis:
|
||||
clsi:
|
||||
url: "http://clsi.example.com"
|
||||
clsi_cookie_expire_length: Math.random()
|
||||
clsi_cookie_expire_length_seconds: Math.random()
|
||||
clsiCookieKey: "coooookie"
|
||||
@requires =
|
||||
"redis-sharelatex" :
|
||||
@@ -90,7 +90,7 @@ describe "ClsiCookieManager", ->
|
||||
it "should set the server id with a ttl", (done)->
|
||||
@ClsiCookieManager.setServerId @project_id, @response, (err)=>
|
||||
@redisMulti.set.calledWith("clsiserver:#{@project_id}", "clsi-8").should.equal true
|
||||
@redisMulti.expire.calledWith("clsiserver:#{@project_id}", @settings.clsi_cookie_expire_length).should.equal true
|
||||
@redisMulti.expire.calledWith("clsiserver:#{@project_id}", @settings.clsi_cookie_expire_length_seconds).should.equal true
|
||||
done()
|
||||
|
||||
it "should return the server id", (done)->
|
||||
|
||||
Reference in New Issue
Block a user