File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
bolt-connection/src/connection-provider
testkit-backend/src/skipped-tests Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ const INVALID_BOOKMARK_CODE = 'Neo.ClientError.Transaction.InvalidBookmark'
48
48
const INVALID_BOOKMARK_MIXTURE_CODE =
49
49
'Neo.ClientError.Transaction.InvalidBookmarkMixture'
50
50
const FORBIDEN_CODE = 'Neo.ClientError.Security.Forbidden'
51
- const UNAUTHORIZED_ERROR_CODE = 'Neo.ClientError.Security.Unauthorized'
51
+ const AUTHORIZATION_EXPIRED_CODE =
52
+ 'Neo.ClientError.Security.AuthorizationExpired'
52
53
53
54
const SYSTEM_DB_NAME = 'system'
54
55
const DEFAULT_DB_NAME = null
@@ -698,7 +699,7 @@ function _isFailFastError (error) {
698
699
function _isFailFastSecurityError ( error ) {
699
700
return error . code . startsWith ( 'Neo.ClientError.Security.' ) &&
700
701
! [
701
-
702
+ AUTHORIZATION_EXPIRED_CODE ,
702
703
] . includes ( error . code )
703
704
}
704
705
Original file line number Diff line number Diff line change @@ -108,6 +108,13 @@ const skippedTests = [
108
108
'test_should_use_resolver_during_rediscovery_when_existing_routers_fail'
109
109
)
110
110
) ,
111
+ skip (
112
+ 'Needs to implement "domain_name_resolver_fn"' ,
113
+ ifEndsWith (
114
+ 'test_should_request_rt_from_all_initial_routers_until_successful_on_unknown_failure' ,
115
+ '_test_should_request_rt_from_all_initial_routers_until_successful'
116
+ )
117
+ ) ,
111
118
skip (
112
119
'Needs investigation. It is only failing in the RoutingV3 case' ,
113
120
ifEndsWith (
You can’t perform that action at this time.
0 commit comments