-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pdf file upload redirection not working #3
Comments
Hi @dharm18990, Yes, I never got around to finishing that part. This project ( Of course, we will gladly accept a PR that implements that (it pretty much needs to replicate the JRuby version's behavior). |
HI @dharm18990 Did you solve this issue? I am stuck at this part. |
I have the same issue, no error on the server whatsoever. |
Hi @ClementNerma, my previous answer: #3 (comment) |
I saw your answer, I just added an answer to indicate the problem was still there, I don't know if there has been any update on this / opened PR on this topic? |
No updates, unfortunately. At the moment, all of the projects under the |
when I try to upload the pdf file the pdf file is uploaded successfully to the system folder.
but the upload progress is showing in the waiting stage so the redirection from progress bar to view pdf file not working.
package technology.tabula.tabula_web.routes;
import spark.Request;
import spark.Response;
import spark.Route;
import spark.RouteGroup;
import technology.tabula.tabula_web.JsonTransformer;
import technology.tabula.tabula_web.background.JobExecutor;
import technology.tabula.tabula_web.background.job.DetectTables;
import technology.tabula.tabula_web.background.job.GenerateDocumentData;
import technology.tabula.tabula_web.background.job.Job;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import static spark.Spark.get;
public class JobProgressRouteGroup implements RouteGroup {
}
return new JobProgress(firstWorkingJob != null ? "working" : "completed",
"Dummy message",
"",
pctComplete,
request.params(":file_id"),
batchId);
firstWorkingJob= value is never getting null so jobProgress never completed
unable to identify how to complete the job progress
I have checked the same scenario in the ruby project that's working fine.
The text was updated successfully, but these errors were encountered: