Skip to content

Commit

Permalink
fix(cwevi): change WithoutTimeout to Context
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennChia committed Nov 22, 2022
1 parent afc7100 commit 784a9c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/service/evidently/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import (

func ResourceFeature() *schema.Resource {
return &schema.Resource{
CreateWithoutTimeout: resourceFeatureCreate,
ReadWithoutTimeout: resourceFeatureRead,
UpdateWithoutTimeout: resourceFeatureUpdate,
DeleteWithoutTimeout: resourceFeatureDelete,
CreateContext: resourceFeatureCreate,
ReadContext: resourceFeatureRead,
UpdateContext: resourceFeatureUpdate,
DeleteContext: resourceFeatureDelete,

Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
Expand Down

0 comments on commit 784a9c0

Please sign in to comment.