File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
bolt-connection/src/connection-provider 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
@@ -669,7 +670,7 @@ function _isFailFastError (error) {
669
670
function _isFailFastSecurityError ( error ) {
670
671
return error . code . startsWith ( 'Neo.ClientError.Security.' ) &&
671
672
! [
672
-
673
+ AUTHORIZATION_EXPIRED_CODE ,
673
674
] . includes ( error . code )
674
675
}
675
676
Original file line number Diff line number Diff line change @@ -77,6 +77,13 @@ const skippedTests = [
77
77
'test_should_use_resolver_during_rediscovery_when_existing_routers_fail'
78
78
)
79
79
) ,
80
+ skip (
81
+ 'Needs to implement "domain_name_resolver_fn"' ,
82
+ ifEndsWith (
83
+ 'test_should_request_rt_from_all_initial_routers_until_successful_on_unknown_failure' ,
84
+ '_test_should_request_rt_from_all_initial_routers_until_successful'
85
+ )
86
+ ) ,
80
87
skip (
81
88
'Needs investigation. It is only failing in the RoutingV3 case' ,
82
89
ifEndsWith (
You can’t perform that action at this time.
0 commit comments