1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-03 10:40:06 +00:00

chore: adding docs for requestHistoryLimit

This commit is contained in:
Allan Bowe
2022-02-17 20:46:09 +00:00
parent fe3f6d6287
commit 842c7f9b23
2 changed files with 4 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ export class SASjsConfig {
*/
useComputeApi: boolean | null = null
/**
* Optional settings to configure HTTPS Agent.
* Optional setting to configure HTTPS Agent.
* By providing `key`, `cert`, `ca` to connect with server
* Other options can be set `rejectUnauthorized` and `requestCert`
*/
@@ -70,7 +70,8 @@ export class SASjsConfig {
*/
loginMechanism: LoginMechanism = LoginMechanism.Default
/**
* Optional settings to configure limit for requests history
* Optional setting to configure request history limit. Increasing this limit
* may affect browser performance, especially with debug (logs) enabled.
*/
requestHistoryLimit?: number = 10
}