You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user uploads a document that contains the exact string !) within its text, the upload will succeed, but attempting an analysis will cause an error with the Tornado Web Server library.
For whatever reason, Tornado cannot properly encode/decode !) when sending and receiving data between linguine-python and linguine-node.
Proposed Solution
Implement a hidden, mandatory preprocessing step that replaces all occurrences of \(([^\(\)]*!)\) with \[\1\].
The text was updated successfully, but these errors were encountered:
Problem
When a user uploads a document that contains the exact string
!)
within its text, the upload will succeed, but attempting an analysis will cause an error with the Tornado Web Server library.For whatever reason, Tornado cannot properly encode/decode
!)
when sending and receiving data betweenlinguine-python
andlinguine-node
.Proposed Solution
Implement a hidden, mandatory preprocessing step that replaces all occurrences of
\(([^\(\)]*!)\)
with\[\1\]
.The text was updated successfully, but these errors were encountered: