Skip to content

Commit

Permalink
[PREF]: code linting
Browse files Browse the repository at this point in the history
  • Loading branch information
iapain committed Nov 29, 2023
1 parent aeca4d3 commit c2082b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions jetstream/resource_jetstream_consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ func resourceConsumer() *schema.Resource {
ForceNew: false,
},
"filter_subject": {
Type: schema.TypeString,
Description: "Only receive a subset of messages from the Stream based on the subject they entered the Stream on",
Default: "",
Optional: true,
ForceNew: false,
Type: schema.TypeString,
Description: "Only receive a subset of messages from the Stream based on the subject they entered the Stream on",
Default: "",
Optional: true,
ForceNew: false,
ConflictsWith: []string{"filter_subjects"},
},
"filter_subjects": {
Expand Down
1 change: 0 additions & 1 deletion jetstream/resource_jetstream_consumer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ func TestResourceConsumer(t *testing.T) {
resource.TestCheckResourceAttr("jetstream_consumer.TEST_C3", "filter_subject", "TEST.a"),
),
},

},
})
}

0 comments on commit c2082b2

Please sign in to comment.