Skip to content

Commit b4055bb

Browse files
authored
fix: remove qos (#5259)
1 parent 24185b3 commit b4055bb

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

cypress/e2e/cloud/subscriptions.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,6 @@ describe('Subscriptions', () => {
665665
updatedAt: '2022-05-24T19:20:48.371Z',
666666
protocol: 'mqtt',
667667
bucket: 'devbucket',
668-
qos: 0,
669668
name: 'aaaa',
670669
stringMeasurement: {name: 'measurement', pattern: ''},
671670
stringFields: [{name: '', pattern: ''}],

src/types/subscriptions.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export interface Subscription {
2323
stringTimestamp?: StringObjectParams
2424
status?: string
2525
bucket?: string
26-
qos?: number
2726
createdAt?: Date
2827
updatedAt?: Date
2928
createdBy?: string

src/writeData/subscriptions/context/subscription.create.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export const DEFAULT_CONTEXT: SubscriptionCreateContextType = {
7272
name: '',
7373
},
7474
bucket: 'nifi',
75-
qos: 0,
7675
timestampPrecision: 'NS',
7776
},
7877
updateForm: () => {},

src/writeData/subscriptions/context/subscription.update.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ export const DEFAULT_CONTEXT: SubscriptionUpdateContextType = {
9191
name: '',
9292
},
9393
bucket: 'nifi',
94-
qos: 0,
9594
timestampPrecision: 'NS',
9695
},
9796
updateForm: () => {},

0 commit comments

Comments
 (0)