Skip to content

Commit 423fc9d

Browse files
committed
Removed usePersistedQueueStorage from readme
1 parent 8809a96 commit 423fc9d

File tree

7 files changed

+0
-14
lines changed

7 files changed

+0
-14
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { Exceptionless } from "https://unpkg.com/@exceptionless/browser";
1919

2020
await Exceptionless.startup((c) => {
2121
c.apiKey = "API_KEY_HERE";
22-
c.usePersistedQueueStorage = true;
2322
c.setUserIdentity("12345678", "Blake");
2423

2524
// set some default data
@@ -48,7 +47,6 @@ import { Exceptionless } from "@exceptionless/node";
4847

4948
await Exceptionless.startup((c) => {
5049
c.apiKey = "API_KEY_HERE";
51-
c.usePersistedQueueStorage = true;
5250
c.setUserIdentity("12345678", "Blake");
5351

5452
// set some default data
@@ -87,7 +85,6 @@ Use one of the following methods to install Exceptionless into your browser appl
8785
8886
await Exceptionless.startup((c) => {
8987
c.apiKey = "API_KEY_HERE";
90-
c.usePersistedQueueStorage = true;
9188
});
9289
</script>
9390
```
@@ -102,7 +99,6 @@ Use one of the following methods to install Exceptionless into your browser appl
10299

103100
await Exceptionless.startup((c) => {
104101
c.apiKey = "API_KEY_HERE";
105-
c.usePersistedQueueStorage = true;
106102
});
107103
```
108104

@@ -118,7 +114,6 @@ Use this method to install Exceptionless into your Node application:
118114

119115
await Exceptionless.startup((c) => {
120116
c.apiKey = "API_KEY_HERE";
121-
c.usePersistedQueueStorage = true;
122117
});
123118
```
124119

@@ -133,7 +128,6 @@ a callback as shown below:
133128
```js
134129
await Exceptionless.startup((c) => {
135130
c.apiKey = "API_KEY_HERE";
136-
c.usePersistedQueueStorage = true;
137131
});
138132
```
139133

packages/angularjs/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ angular
3939
.config(function ($ExceptionlessClient) {
4040
await $ExceptionlessClient.startup((c) => {
4141
c.apiKey = "API_KEY_HERE";
42-
c.usePersistedQueueStorage = true;
4342

4443
c.defaultTags.push("Example", "JavaScript", "angularjs");
4544
});

packages/browser/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import { Exceptionless } from "https://unpkg.com/@exceptionless/browser";
2222
2323
await Exceptionless.startup((c) => {
2424
c.apiKey = "API_KEY_HERE";
25-
c.usePersistedQueueStorage = true;
2625
});
2726
</script>
2827
```
@@ -37,7 +36,6 @@ await Exceptionless.startup((c) => {
3736

3837
await Exceptionless.startup((c) => {
3938
c.apiKey = "API_KEY_HERE";
40-
c.usePersistedQueueStorage = true;
4139
});
4240
```
4341

@@ -52,7 +50,6 @@ import { Exceptionless } from "@exceptionless/browser";
5250

5351
await Exceptionless.startup(c => {
5452
c.apiKey = "API_KEY_HERE";
55-
c.usePersistedQueueStorage = true;
5653
c.setUserIdentity("12345678", "Blake");
5754

5855
// set some default data

packages/core/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import { Exceptionless } from "@exceptionless/core";
3030

3131
await Exceptionless.startup(c => {
3232
c.apiKey = "API_KEY_HERE";
33-
c.usePersistedQueueStorage = true;
3433
c.setUserIdentity("12345678", "Blake");
3534

3635
// set some default data

packages/node/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import { Exceptionless } from "@exceptionless/node";
2222

2323
await Exceptionless.startup(c => {
2424
c.apiKey = "API_KEY_HERE";
25-
c.usePersistedQueueStorage = true;
2625
c.setUserIdentity("12345678", "Blake");
2726

2827
// set some default data

packages/react/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ class App extends Component {
2323
async componentDidMount() {
2424
await Exceptionless.startup((c) => {
2525
c.apiKey = "API_KEY_HERE";
26-
c.usePersistedQueueStorage = true;
2726
c.setUserIdentity("12345678", "Blake");
2827

2928
c.defaultTags.push("Example", "React");

packages/vue/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import { Exceptionless, ExceptionlessErrorHandler } from "@exceptionless/vue";
2727

2828
Exceptionless.startup((c) => {
2929
c.apiKey = "API_KEY_HERE";
30-
c.usePersistedQueueStorage = true;
3130
c.setUserIdentity("12345678", "Blake");
3231

3332
c.defaultTags.push("Example", "Vue");

0 commit comments

Comments
 (0)