We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Application requests return error message when using Native Images.
All examples that use Native Images in serverless workflow directory.
Example commands:
curl -X POST -H 'Content-Type:application/json' -H 'Accept:application/json' -d '{"name": "John", "language": "English"}' http://localhost:8080/jsongreet
curl -X POST -H 'Content-Type:application/json' -H 'Accept:application/json' -d '{"number": 2}' http://localhost:8080/error
curl -X POST -H 'Content-Type:application/json' -H 'Accept:application/json' -d '{"workflowdata":{"numbers":[{"x":2, "y": 1},{"x":4, "y": 3}]}}' http://localhost:8080/expression
The following message is returned: {"message":"Illegal node type: class org.jbpm.workflow.core.node.StartNode"}.
{"message":"Illegal node type: class org.jbpm.workflow.core.node.StartNode"}
Correct message is returned (depends on specific example).
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Application requests return error message when using Native Images.
Details
All examples that use Native Images in serverless workflow directory.
Example commands:
curl -X POST -H 'Content-Type:application/json' -H 'Accept:application/json' -d '{"name": "John", "language": "English"}' http://localhost:8080/jsongreet
from Greeting Examplecurl -X POST -H 'Content-Type:application/json' -H 'Accept:application/json' -d '{"number": 2}' http://localhost:8080/error
from Error Examplecurl -X POST -H 'Content-Type:application/json' -H 'Accept:application/json' -d '{"workflowdata":{"numbers":[{"x":2, "y": 1},{"x":4, "y": 3}]}}' http://localhost:8080/expression
from Expression ExampleSteps to reproduce
Actual result
The following message is returned:
{"message":"Illegal node type: class org.jbpm.workflow.core.node.StartNode"}
.Expected result
Correct message is returned (depends on specific example).
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: