Orlando Thöny

Results 24 comments of Orlando Thöny

Yes, it's really not intuitive. Resorted to creating a downtime manually in the UI, and checking the browser console to see which values are correct.

@mounikanakkala Using `lifecycle.replace_triggered_by` as a workaround worked for me ``` resource "datadog_downtime" "downtime" { scope = ["*"] monitor_id = var.monitor_id start = time_offset.downtime_start.unix end = time_offset.downtime_end.unix recurrence { type =...

Would be nice to have this, blocks Drupal 9 upgrade.

Another possibility would be to make the behaviour configurable, for example as PHPStan is doing it: https://phpstan.org/user-guide/ignoring-errors#reporting-unused-ignores

We ran into this issue when upgrading `doctrine/orm` [2.16.3](https://github.com/doctrine/orm/releases/tag/2.16.3) => [2.17.0](https://github.com/doctrine/orm/releases/tag/2.17.0). The error occurred at https://github.com/doctrine/orm/pull/8931/files#diff-3e426fe47b58d2d4b970b1b7a0cbf5999af950e4f84e48dce4bee5061b57ed31R756 Changing the `GeneratedValue` strategy from `AUTO` to `IDENTITY` fixed the problem: ``` // From...

I'm not that deep into UDP. A general question of understanding: Is `stream_set_timeout()` relevant for UDP connections? Or does it only apply to TCP sockets?

@Beakerboy Yes, that's correct. This would be an additional method for calculating the bandwidth. That would be one option regarding backward compatibility, another option would be to allow `callable`s as...

+1 Would also be nice to add an option to disable the check for the `composer.json `file. In case it is not present, because it is not required for running...

We're using the default `/etc/hosts` of Ubuntu. Yes, changing to an IP (`127.0.0.1`) would probably be the easiest fix.

Yes it's strange, the `127.0.0.1 localhost` record is also the first one on our servers: ``` cat /etc/hosts 127.0.0.1 localhost 127.0.1.1 my-ubuntu-user # The following lines are desirable for IPv6...