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
Each time the celery task 'service_definition_task' is run, an instance of 'ServiceDefinition' is created. ServiceDefinition calls the 'self._get_data()' def in its __init__, which retrieves the submission data from the database. Between each attempt of the service_definition_task, the submission data is retrieved. If between two attempts of the task, the submission is modified, the data sent to the REST service will therefore be different.
Is it the expected behavior ? I except the expected behavior is the original submission data, no ?
Data sent to the REST service is the latest version in the database.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Each time the celery task 'service_definition_task' is run, an instance of 'ServiceDefinition' is created. ServiceDefinition calls the 'self._get_data()' def in its __init__, which retrieves the submission data from the database.
Between each attempt of the service_definition_task, the submission data is retrieved.
If between two attempts of the task, the submission is modified, the data sent to the REST service will therefore be different.
Steps to Reproduce
Expected behavior
Is it the expected behavior ? I except the expected behavior is the original submission data, no ?
Actual behavior
Data sent to the REST service is the latest version in the database.
The text was updated successfully, but these errors were encountered: