-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provider/aws: Prevent aws_dms_replication_task panic #12539
Conversation
Fixes: #12506 When a replication_task cdc_start_time was specified as an int, it was causing a panic as the conversion to a Unix timestampe was expecting a string ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAwsDmsReplicationTaskBasic' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/08 22:55:29 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAwsDmsReplicationTaskBasic -timeout 120m === RUN TestAccAwsDmsReplicationTaskBasic --- PASS: TestAccAwsDmsReplicationTaskBasic (1089.77s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 1089.802s ```
ddb2af7
to
8276218
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
<3 @grubernaut |
Fixes: #12506 When a replication_task cdc_start_time was specified as an int, it was causing a panic as the conversion to a Unix timestampe was expecting a string ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAwsDmsReplicationTaskBasic' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/08 22:55:29 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAwsDmsReplicationTaskBasic -timeout 120m === RUN TestAccAwsDmsReplicationTaskBasic --- PASS: TestAccAwsDmsReplicationTaskBasic (1089.77s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 1089.802s ```
…stable * '0-8-stable' of github.com:hashicorp/terraform: Update CHANGELOG.md provider/aws: Prevent aws_dms_replication_task panic (#12539)
Fixes: hashicorp#12506 When a replication_task cdc_start_time was specified as an int, it was causing a panic as the conversion to a Unix timestampe was expecting a string ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAwsDmsReplicationTaskBasic' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/08 22:55:29 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAwsDmsReplicationTaskBasic -timeout 120m === RUN TestAccAwsDmsReplicationTaskBasic --- PASS: TestAccAwsDmsReplicationTaskBasic (1089.77s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 1089.802s ```
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Fixes: #12506
When a replication_task cdc_start_time was specified as an int, it was
causing a panic as the conversion to a Unix timestampe was expecting a
string
It's important to know that the schema was incorrect here - the strip was required for the Parse of the time not an int