File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ services:
69
69
PORT : 8083
70
70
LOG_LEVEL : ' debug'
71
71
volumes :
72
- - /home/app/dm3/config.yml:/app/packages/delivery-service/ dist/config.yml
72
+ - /home/app/dm3/config.yml:/app/dist/config.yml
73
73
74
74
db-delivery-service :
75
75
image : redis
@@ -132,7 +132,7 @@ services:
132
132
image : dm3org/ccip-resolver:v0.2.7
133
133
restart : always
134
134
depends_on :
135
- - offchain-resolver
135
+ - offchain-resolver
136
136
environment :
137
137
SIGNER_PRIVATE_KEY : ${SIGNER_PRIVATE_KEY}
138
138
LOG_LEVEL : debug
@@ -152,4 +152,4 @@ volumes:
152
152
driver_opts :
153
153
type : none
154
154
device : /mnt/dm3_prod_volume/webroot
155
- o : bind
155
+ o : bind
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ export async function checkToken(
41
41
console . debug ( 'checking auth token' , decode ( token ) ) ;
42
42
43
43
const session = await getSession ( ensName . toLocaleLowerCase ( ) ) ;
44
- console . log ( 'found session' , session ) ;
45
44
if ( ! session ) {
46
45
console . debug ( 'there is no account for this ens name: ' , ensName ) ;
47
46
return false ;
Original file line number Diff line number Diff line change @@ -60,11 +60,6 @@ export function socketAuth(
60
60
) ;
61
61
console . log ( 'Start WS auth for ' , ensName , socket . id ) ;
62
62
63
- console . log ( 'socket dump' ) ;
64
- console . log ( '---' ) ;
65
- console . log ( socket ) ;
66
- console . log ( '---' ) ;
67
-
68
63
if (
69
64
! ( await checkToken (
70
65
web3Provider ,
You can’t perform that action at this time.
0 commit comments