We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b5e272 commit 2da8167Copy full SHA for 2da8167
gems.rb
@@ -7,8 +7,6 @@
7
8
gemspec
9
10
-gem "faraday", git: "https://github.com/lostisland/faraday.git", branch: "mg/parallel-manager-execute"
11
-
12
group :maintenance, optional: true do
13
gem "bake-modernize"
14
gem "bake-gem"
lib/async/http/faraday/adapter.rb
@@ -63,7 +63,11 @@ def run
63
end
64
65
def async(&block)
66
- @barrier.async(&block)
+ if @barrier
67
+ @barrier.async(&block)
68
+ else
69
+ Sync(&block)
70
+ end
71
72
73
def execute(&block)
0 commit comments