Fix for https://github.com/pruiz/AberrantSMPP/issues/11#13
Open
TRoetz wants to merge 5 commits intopruiz:masterfrom
Open
Fix for https://github.com/pruiz/AberrantSMPP/issues/11#13TRoetz wants to merge 5 commits intopruiz:masterfrom
TRoetz wants to merge 5 commits intopruiz:masterfrom
Conversation
Author
|
I changed it so it now respects your spacing(tabs). |
pruiz
reviewed
Jul 19, 2017
| { | ||
| state = new RequestState(SendPdu(request)); | ||
| _RequestsAwaitingResponse.Add(state.SequenceNumber, state); | ||
| if (!_RequestsAwaitingResponse.ContainsKey(state.SequenceNumber)) |
Owner
There was a problem hiding this comment.
I am afraid this is still racy.. We will need to use some kind of concurrent dictionary or wrap this contains+add logic within a lock() {} statement.
Author
There was a problem hiding this comment.
Okay - I will wrap it up into a concurrent dictionary, with TryAddUpdates.
There was a problem hiding this comment.
Hi! Why is it not accepted to master?
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Try Catch block required for dead socket when write completes and updated gitIgnore to exclude .vs folder.