mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 18:01:01 +00:00
Merge branch 'master' into csh-stackdriver
This commit is contained in:
commit
68ee9a4ead
3 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ A web api for compiling LaTeX documents in the cloud
|
|||
|
||||
[](https://travis-ci.org/sharelatex/clsi-sharelatex)
|
||||
|
||||
The CLSI provide a RESTful interface to traditional LaTeX tools (or, more generally, any command line tool for composing marked-up documents into a display format such as PDF or HTML). The CLSI listens on the following ports by default:
|
||||
The Common LaTeX Service Interface (CLSI) provides a RESTful interface to traditional LaTeX tools (or, more generally, any command line tool for composing marked-up documents into a display format such as PDF or HTML). The CLSI listens on the following ports by default:
|
||||
|
||||
* TCP/3009 - the RESTful interface
|
||||
* TCP/3048 - reports load information
|
||||
|
|
|
@ -33,7 +33,7 @@ module.exports = CompileController =
|
|||
else
|
||||
status = "error"
|
||||
code = 500
|
||||
logger.error err: error, project_id: request.project_id, "error running compile"
|
||||
logger.warn err: error, project_id: request.project_id, "error running compile"
|
||||
|
||||
else
|
||||
status = "failure"
|
||||
|
@ -42,7 +42,7 @@ module.exports = CompileController =
|
|||
status = "success"
|
||||
|
||||
if status == "failure"
|
||||
logger.err project_id: request.project_id, outputFiles:outputFiles, "project failed to compile successfully, no output.pdf generated"
|
||||
logger.warn project_id: request.project_id, outputFiles:outputFiles, "project failed to compile successfully, no output.pdf generated"
|
||||
|
||||
# log an error if any core files are found
|
||||
for file in outputFiles
|
||||
|
|
|
@ -14,7 +14,7 @@ describe "CompileController", ->
|
|||
clsi:
|
||||
url: "http://clsi.example.com"
|
||||
"./ProjectPersistenceManager": @ProjectPersistenceManager = {}
|
||||
"logger-sharelatex": @logger = { log: sinon.stub(), error: sinon.stub(), err:sinon.stub() }
|
||||
"logger-sharelatex": @logger = { log: sinon.stub(), error: sinon.stub(), err:sinon.stub(), warn: sinon.stub()}
|
||||
@Settings.externalUrl = "http://www.example.com"
|
||||
@req = {}
|
||||
@res = {}
|
||||
|
|
Loading…
Reference in a new issue