Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "origintrail_node",
"version": "8.1.1-rc.10",
"version": "8.1.1-rc.11",
"description": "OTNode V8",
"main": "index.js",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class HandleProtocolMessageCommand extends Command {
this.logger.error(`Command error (${this.errorType}): ${errorMessage}`);
if (errorMessage !== null) {
this.logger.debug(`Marking operation id ${operationId} as failed`);
await this.removeOperationIdCache(operationId);
await this.operationIdService.removeOperationIdCache(operationId);
}
this.operationIdService.emitChangeEvent(
this.errorType,
Expand Down
2 changes: 1 addition & 1 deletion src/service/blazegraph-health-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class BlazegraphHealthService {

try {
const response = await axios.get(`${repositoryUrl}/blazegraph/status`, {
timeout: 1000,
timeout: 3 * 1000,
});

if (response.status === 200) {
Expand Down
Loading