-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1441 from IntersectMBO/test
chore: bump @intersect.mbo/[email protected]
- Loading branch information
Showing
73 changed files
with
2,572 additions
and
5,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
"host" : "localhost", | ||
"cachedurationseconds": 20, | ||
"sentrydsn": "https://username:[email protected]/id", | ||
"sentryenv": "dev", | ||
"metadatavalidationhost": "localhost", | ||
"metadatavalidationport": 3001, | ||
"metadatavalidationmaxconcurrentrequests": 10 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,8 @@ data VVAConfigInternal | |
, vVaConfigInternalCacheDurationSeconds :: Int | ||
-- | Sentry DSN | ||
, vVAConfigInternalSentrydsn :: String | ||
-- | Sentry environment | ||
, vVAConfigInternalSentryEnv :: String | ||
-- | Metadata validation service host | ||
, vVAConfigInternalMetadataValidationHost :: Text | ||
-- | Metadata validation service port | ||
|
@@ -97,6 +99,7 @@ instance DefaultConfig VVAConfigInternal where | |
vVAConfigInternalHost = "localhost", | ||
vVaConfigInternalCacheDurationSeconds = 20, | ||
vVAConfigInternalSentrydsn = "https://username:[email protected]/id", | ||
vVAConfigInternalSentryEnv = "development", | ||
vVAConfigInternalMetadataValidationHost = "localhost", | ||
vVAConfigInternalMetadataValidationPort = 3001, | ||
vVAConfigInternalMetadataValidationMaxConcurrentRequests = 10 | ||
|
@@ -115,6 +118,8 @@ data VVAConfig | |
, cacheDurationSeconds :: Int | ||
-- | Sentry DSN | ||
, sentryDSN :: String | ||
-- | Sentry environment | ||
, sentryEnv :: String | ||
-- | Metadata validation service host | ||
, metadataValidationHost :: Text | ||
-- | Metadata validation service port | ||
|
@@ -161,6 +166,7 @@ convertConfig VVAConfigInternal {..} = | |
serverHost = vVAConfigInternalHost, | ||
cacheDurationSeconds = vVaConfigInternalCacheDurationSeconds, | ||
sentryDSN = vVAConfigInternalSentrydsn, | ||
sentryEnv = vVAConfigInternalSentryEnv, | ||
metadataValidationHost = vVAConfigInternalMetadataValidationHost, | ||
metadataValidationPort = vVAConfigInternalMetadataValidationPort, | ||
metadataValidationMaxConcurrentRequests = vVAConfigInternalMetadataValidationMaxConcurrentRequests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.