Skip to content

Commit a213451

Browse files
committed
Update github action to clone submodules
1 parent 045c8ef commit a213451

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/actions.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@v3
30+
with:
31+
submodules: true
3032

3133
- name: Set up Go
3234
uses: actions/setup-go@v3
@@ -58,6 +60,8 @@ jobs:
5860
runs-on: ubuntu-latest
5961
steps:
6062
- uses: actions/checkout@v3
63+
with:
64+
submodules: true
6165

6266
- name: Set up Go
6367
uses: actions/setup-go@v3

store/memory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const (
2323
MemStoreFlagName = "memstore.enabled"
2424
ExpirationFlagName = "memstore.expiration"
2525

26-
DefaultPruneInterval = 1 * time.Minute
26+
DefaultPruneInterval = 500 * time.Millisecond
2727
)
2828

2929
type MemStoreConfig struct {

test/e2e_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ func TestE2EPutGetLogicForEigenDAStore(t *testing.T) {
139139
}
140140

141141
func TestE2EPutGetLogicForMemoryStore(t *testing.T) {
142+
if runTestnetIntegrationTests {
143+
t.Skip("Skipping non-testnet integration test")
144+
}
145+
142146
ts, kill := createTestSuite(t, true)
143147
defer kill()
144148

0 commit comments

Comments
 (0)