-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE-1462] Use low retry-backoff value when running tests
- Because we use a mock server
- Loading branch information
1 parent
f3b3405
commit ced7adc
Showing
4 changed files
with
46 additions
and
21 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
30 changes: 30 additions & 0 deletions
30
...hird-party/openpaas/src/main/java/com/linagora/tmail/dav/RetriableDavClientException.java
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,30 @@ | ||
/******************************************************************** | ||
* As a subpart of Twake Mail, this file is edited by Linagora. * | ||
* * | ||
* https://twake-mail.com/ * | ||
* https://linagora.com * | ||
* * | ||
* This file is subject to The Affero Gnu Public License * | ||
* version 3. * | ||
* * | ||
* https://www.gnu.org/licenses/agpl-3.0.en.html * | ||
* * | ||
* This program is distributed in the hope that it will be * | ||
* useful, but WITHOUT ANY WARRANTY; without even the implied * | ||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * | ||
* PURPOSE. See the GNU Affero General Public License for * | ||
* more details. * | ||
********************************************************************/ | ||
|
||
package com.linagora.tmail.dav; | ||
|
||
public class RetriableDavClientException extends DavClientException { | ||
|
||
public RetriableDavClientException(String message) { | ||
super(message); | ||
} | ||
|
||
public RetriableDavClientException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
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