Skip to content

Commit

Permalink
increase op-node timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonNorthey92 committed Aug 18, 2024
1 parent 3085fb4 commit 18c2190
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
name: "Docker"
on:
push:
branches:
- main

concurrency:
group: "docker-${{ github.workflow }}-${{ github.event.number || github.ref }}"
Expand Down
11 changes: 6 additions & 5 deletions op-service/client/bss_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@ package client
import (
"context"
"fmt"
"sync"
"time"

"github.com/davecgh/go-spew/spew"
"github.com/ethereum/go-ethereum/log"
"github.com/hemilabs/heminetwork/api/bssapi"
"github.com/hemilabs/heminetwork/api/protocol"
"github.com/hemilabs/heminetwork/hemi"
"github.com/davecgh/go-spew/spew"
"github.com/ethereum/go-ethereum/log"
"sync"
"time"
)

const (
defaultRequestTimeout = 5 * time.Second
defaultRequestTimeout = 10 * time.Second
defaultHoldoffTimeout = 5 * time.Second
)

Expand Down

0 comments on commit 18c2190

Please sign in to comment.