diff --git a/services/web/app/coffee/Features/Compile/ClsiCookieManager.coffee b/services/web/app/coffee/Features/Compile/ClsiCookieManager.coffee index 18e69e274d..66b407f6f9 100644 --- a/services/web/app/coffee/Features/Compile/ClsiCookieManager.coffee +++ b/services/web/app/coffee/Features/Compile/ClsiCookieManager.coffee @@ -44,6 +44,8 @@ module.exports = ClsiCookieManager = if !clsiCookiesEnabled return callback() serverId = ClsiCookieManager._parseServerIdFromResponse(response) + if !serverId? # We don't get a cookie back if it hasn't changed + return callback() if rclient_secondary? @_setServerIdInRedis rclient_secondary, project_id, serverId @_setServerIdInRedis rclient, project_id, serverId, (err) -> diff --git a/services/web/test/UnitTests/coffee/Compile/ClsiCookieManagerTests.coffee b/services/web/test/UnitTests/coffee/Compile/ClsiCookieManagerTests.coffee index ae0e9eb20e..f490af42e1 100644 --- a/services/web/test/UnitTests/coffee/Compile/ClsiCookieManagerTests.coffee +++ b/services/web/test/UnitTests/coffee/Compile/ClsiCookieManagerTests.coffee @@ -105,13 +105,18 @@ describe "ClsiCookieManager", -> serverId.should.equal "clsi-8" done() - it "should not set the server id if clsiCookies are not enabled", (done)-> delete @settings.clsiCookie.key @ClsiCookieManager = SandboxedModule.require modulePath, requires:@requires @ClsiCookieManager.setServerId @project_id, @response, (err, serverId)=> @redisMulti.exec.called.should.equal false done() + + it "should not set the server id there is no server id in the response", (done)-> + @ClsiCookieManager._parseServerIdFromResponse = sinon.stub().returns(null) + @ClsiCookieManager.setServerId @project_id, @response, (err, serverId)=> + @redisMulti.exec.called.should.equal false + done() it "should also set in the secondary if secondary redis is enabled", (done) -> @redisSecondaryMulti =