Skip to content

Commit

Permalink
Passing DB options
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-sekara committed Nov 3, 2023
1 parent 990d34b commit 6096233
Showing 1 changed file with 51 additions and 1 deletion.
52 changes: 51 additions & 1 deletion integration-tests/ccip-tests/testconfig/override/override.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,57 @@ NoOfRoutersPerPair = 2
NoOfNetworks = 10


[CCIP.Env.Chainlink.Common]
Name = 'node1'
DBImage = 'postgres'
DBTag = '13.12'
NodeConfig = """
[Feature]
LogPoller = true
CCIP = true
[Log]
Level = 'debug'
JSONConsole = true
[Log.File]
MaxSize = '0b'
[WebServer]
AllowOrigins = '*'
HTTPPort = 6688
SecureCookies = false
HTTPWriteTimeout = '1m'
[WebServer.RateLimit]
Authenticated = 2000
Unauthenticated = 1000
[WebServer.TLS]
HTTPSPort = 0
[Database]
MaxIdleConns = 10
MaxOpenConns = 20
MigrateOnStartup = true
MigrateOnStartup = true
[OCR2]
Enabled = true
DefaultTransactionQueueDepth = 0
[OCR]
Enabled = false
DefaultTransactionQueueDepth = 0
[P2P.V1]
Enabled = false
ListenPort = 0
[P2P]
[P2P.V2]
Enabled = true
ListenAddresses = ['0.0.0.0:6690']
AnnounceAddresses = ['0.0.0.0:6690']
DeltaDial = '500ms'
DeltaReconcile = '5s'
"""

0 comments on commit 6096233

Please sign in to comment.