forked from ringcentral/pubnub-jtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SDK-1546 evict transactional HTTP client connection pool (#224)
SDK-1546 evict transactional HTTP client connection pool When receiving PNStatusCategory.PNReconnectedCategory users can think that is about the whole PubNub library and not only about the subscription loop. For better user experience we're going to evict possibly broken connections for transactional calls Co-authored-by: Bartek Kępa <bartlomiej.kepa@pubnub.com>
- Loading branch information
Showing
10 changed files
with
92 additions
and
60 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
* @kleewho @bartk @Chesteer89 | ||
.github/* @parfeon @kleewho @bartk @Chesteer89 | ||
* @kleewho @bartk @Chesteer89 @budgetpreneur | ||
.github/* @parfeon @kleewho @bartk @Chesteer89 @budgetpreneur | ||
README.md @techwritermat @kazydek |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.pubnub.contract | ||
|
||
import io.cucumber.junit.Cucumber | ||
import io.cucumber.junit.CucumberOptions | ||
import org.junit.runner.RunWith | ||
|
||
@RunWith(Cucumber::class) | ||
@CucumberOptions( | ||
tags = "not @skip and not @na=ruby and not @beta", | ||
plugin = ["pretty", "summary", "junit:build/reports/cucumber-reports/main.xml"] | ||
) | ||
class RunMainCucumberTest | ||
|
||
@RunWith(Cucumber::class) | ||
@CucumberOptions( | ||
tags = "not @skip and not @na=ruby and @beta", | ||
plugin = ["pretty", "summary", "junit:build/reports/cucumber-reports/beta.xml"] | ||
) | ||
class RunBetaCucumberTest |