Skip to content

Commit

Permalink
pinpoint-apm#83 Change Stream deadline limit to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
feelform committed May 10, 2021
1 parent 8376742 commit a056b14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/client/grpc-client-side-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
const log = require('../utils/logger')
const GrpcStream = require('./grpc-stream')

const DEFAULT_CLIENT_REQUEST_TIMEOUT = 5 * 60 * 1000
const DEFAULT_CLIENT_REQUEST_TIMEOUT = 10 * 60 * 1000

class GrpcClientSideStream {
constructor(name, client, newStream) {
Expand Down
2 changes: 1 addition & 1 deletion lib/pinpoint-config-default.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"enable": true
},
"stream-deadline-minutes": {
"client-side": 5
"client-side": 10
}
}
2 changes: 1 addition & 1 deletion test/pinpoint-config-test.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"enable": true
},
"stream-deadline-minutes": {
"client-side": 5
"client-side": 10
}
}

0 comments on commit a056b14

Please sign in to comment.