lauromoura pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=882a2d4ec46853edfa2d34032a6a80abee6dc211

commit 882a2d4ec46853edfa2d34032a6a80abee6dc211
Author: Bruno da Silva Belo <brunodasilvab...@gmail.com>
Date:   Fri Oct 25 11:17:53 2019 -0300

    csharp: Calling ConfigureAwait on task eopromises.
    
    Summary: ref T8424
    
    Reviewers: lauromoura, felipealmeida, YOhoho, segfaultxavi
    
    Reviewed By: lauromoura
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Maniphest Tasks: T8424
    
    Differential Revision: https://phab.enlightenment.org/D10495
---
 src/tests/efl_mono/EoPromises.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/efl_mono/EoPromises.cs b/src/tests/efl_mono/EoPromises.cs
index 998c66e785..18acbe82ba 100644
--- a/src/tests/efl_mono/EoPromises.cs
+++ b/src/tests/efl_mono/EoPromises.cs
@@ -106,7 +106,7 @@ class LoopConsumer
     public static async Task Consume(Efl.Loop loop)
     {
         Task<Eina.Value> task = loop.IdleAsync();
-        Eina.Value v = await task;
+        Eina.Value v = await task.ConfigureAwait(false);
         loop.Quit(v);
     }
 }

-- 


Reply via email to