Travis Jefferson

Results 20 comments of Travis Jefferson

@siddharthkp what's going on with the storage backend? Does 500 mean... we're overwhelming the firebase app? Or is it a serialization/deserialization issue? Could we try wiping the data for our...

FWIW I worked around this today by using `travis sshkey --generate` to both generate and upload a brand-new, repository-specific SSH key for CI deploys. /shrug

@camro With `prefix_config` removed, I can still create the flow. Attempting to update it yields this plan: ```terraform # module.salesforce_export.aws_appflow_flow.test_flow will be updated in-place ~ resource "aws_appflow_flow" "test_flow" { id...

I'm using the same appflow resource/config that was posted in the original issue description The only modification I made here was to remove the prefix config as you suggested

>Did you ever get a fix to this issue? No, unfortunately not. I've worked around it by switching to the [appflow flow resource from the awscc provider](https://registry.terraform.io/providers/hashicorp/awscc/latest/docs/resources/appflow_flow) The `awscc` version...

Great find! I had to dig through the docs to make sure this was an officially supported construct. I found it [here](http://jade-lang.com/reference/tags/) under 'Block Expansion'. Highlighting this construct will push...

Hm... I'm not an el-get user, but I could maybe be convinced to install it and try to reproduce your issue. Before I do that, can you give me some...

Hi! I'm the repo owner. I haven't made any updates lately, but I'll definitely review any PRs that come in. Thanks for engaging!

Thanks for the detailed report, @sbr61! I'll have a look at this when I have some time. PRs are welcome, too, if you're up for tackling it yourself!

Can AS::N support `current_span` ? One thing I do a lot in my apps: ```ruby # in a controller def index OpenTelemetry::Trace.current_span.add_attributes(interesting_stuff) # ... rest of action end ``` I'm...