-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45c7c88
commit db94be1
Showing
3 changed files
with
41 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<TargetEndpoint name="default"> | ||
<HTTPTargetConnection> | ||
<LoadBalancer> | ||
<Server name="server1"/> | ||
<!-- two servers marked fallback will fail the TD008 check --> | ||
<Server name="server2"> | ||
<IsFallback>true</IsFallback> | ||
</Server> | ||
<Server name="server3"> | ||
<IsFallback>true</IsFallback> | ||
</Server> | ||
</LoadBalancer> | ||
</HTTPTargetConnection> | ||
</TargetEndpoint> |
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,12 @@ | ||
<TargetEndpoint name="default"> | ||
<HTTPTargetConnection> | ||
<LoadBalancer> | ||
<Server name="server1"/> | ||
<Server name="server2"/> | ||
<!-- single fallback is OK --> | ||
<Server name="server3"> | ||
<IsFallback>true</IsFallback> | ||
</Server> | ||
</LoadBalancer> | ||
</HTTPTargetConnection> | ||
</TargetEndpoint> |