-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-4087] Fix test failure in dockercontroller
Test_Start is failing intermittently because the function variable 'err' in the Start function was used in a go routine function, which was clobbering the function variable, only in cases the go routine was able to finish before the err is returned by the Start function. The fix is to use a local variable in the go routine function. Change-Id: Ibbf0f4e1b551020554ff0b06c2c16bc0f39dbc60 Signed-off-by: Anil Ambati <aambati@us.ibm.com>
- Loading branch information
Anil Ambati
committed
May 23, 2017
1 parent
e045b7c
commit a18e2d3
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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