Skip to content
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

High priority shotgun note creation call test (GAME-18568) #74

Open
wants to merge 1 commit into
base: game_18568_fast_note_creation_ownership
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/note_input_widget/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ def _submit(self):

# ask the data retriever to execute an async callback
if self.__sg_data_retriever:
self._processing_id = self.__sg_data_retriever.execute_method(self._async_submit, data)
self._processing_id = self.__sg_data_retriever.execute_method_with_priority(
self._async_submit, self.__sg_data_retriever._SG_CREATE_CALL_PRIORITY, data)
if self._outgoing_tasks:
self._outgoing_tasks.add(self._processing_id)
# If the entity being acted on is a Note then we are creating a Reply, otherwise a "Note"
Expand Down