(resource *schema.Resource)
| 131 | } |
| 132 | |
| 133 | func (tl *transactionEventLogger) Update(resource *schema.Resource) error { |
| 134 | return tl.UpdateContext(context.Background(), resource) |
| 135 | } |
| 136 | |
| 137 | func (tl *transactionEventLogger) UpdateContext(ctx context.Context, resource *schema.Resource) error { |
| 138 | err := tl.Transaction.UpdateContext(ctx, resource) |
nothing calls this directly
no test coverage detected