-
Notifications
You must be signed in to change notification settings - Fork 515
Closed
GoogleCloudPlatform/java-docs-samples
#2444Labels
🚨This issue needs some love.This issue needs some love.api: appengineIssues related to the App Engine Admin API API.Issues related to the App Engine Admin API API.good first issueThis issue is a good place to started contributing to this repository.This issue is a good place to started contributing to this repository.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
In the sample code located at:
line 47. The code shows:
queue.add(TaskOptions.Builder.withUrl("/worker").param("key", key));
The path is incorrect. It should be "/taskqueues/worker":
queue.add(TaskOptions.Builder.withUrl("/taskqueues/worker").param("key", key));
Without this path corrected, the doPost at will not get called in the worker handler:
Metadata
Metadata
Assignees
Labels
🚨This issue needs some love.This issue needs some love.api: appengineIssues related to the App Engine Admin API API.Issues related to the App Engine Admin API API.good first issueThis issue is a good place to started contributing to this repository.This issue is a good place to started contributing to this repository.priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.