Change max_increments in tutinternal and tutmysql and add test for tutmysql in general_tests/a1

This commit is contained in:
TeoV
2019-10-28 10:57:20 -04:00
committed by Dan Christian Bogos
parent 37803cf6ae
commit ca4dfe5fb1
3 changed files with 9 additions and 0 deletions

View File

@@ -28,6 +28,7 @@
"thresholds_conns": [
{"address": "*internal"},
],
"max_increments":3000000,
},

View File

@@ -31,6 +31,7 @@
"thresholds_conns": [
{"address": "*internal"},
],
"max_increments":3000000,
},

View File

@@ -64,6 +64,13 @@ func TestA1ItMongo(t *testing.T) {
}
}
func TestA1ItRedis(t *testing.T) {
a1ConfigDir = "tutmysql"
for _, stest := range sTestsA1it {
t.Run(a1ConfigDir, stest)
}
}
func TestA1ItInternal(t *testing.T) {
a1ConfigDir = "tutinternal"
for _, stest := range sTestsA1it {