Bryan Davis

Results 25 comments of Bryan Davis

@lindhe Have you declared the envvars that your .env file would populate in your docker-compose.yaml? That would typically look something like: ```yaml version: '3.7' services: matterbridge: image: 42wim/matterbridge:stable restart: unless-stopped...

Your `INTERNAL_IPS = IpRangeList(['127.0.0.1/24', '192.168.0.0/16'])` config line should instead be `INTERNAL_IPS = IpRangeList('127.0.0.1/24', '192.168.0.0/16')`. See https://python-iptools.readthedocs.io/en/latest/#iptools.IpRangeList for the initializer signature. There could be a documentation clarity issue here. The docs...

It looks like the webhook to notify RTD of a new build target has gone missing as well.

I do not believe that the current implementation can be coerced into emitting `{}`. The extension emits (most) objects as serialized data with an associated `!php/object` [tag](https://yaml.org/spec/1.2.2/#tags). The `{}` you...

That warning was fixed by https://github.com/php/pecl-file_formats-yaml/pull/74 (https://github.com/php/pecl-file_formats-yaml/commit/e7bffc01c496ef36ce672c612984b13a27426788). This and a few other small fixes have not yet been released but are available from the `php7` default branch.

See issue #14.

`areaBetween` takes one argument which must be a seriesList with exactly 2 series. The first in the list is called `lower` and the second is `upper`. Lower is given the...

Got it working fine for "up" series, but no luck yet for an inverted (`scale(-1)`) series.

Needs rebasing and tests.

The switch to a 500 status is an improvement. The front proxy is no longer replacing your response with a generic error page. The [front proxy config](https://github.com/wikimedia/operations-puppet/blob/d7d12f21c4e7893c56521f188ed9f3838b23bc55/modules/profile/templates/toolforge/proxy/nginx-site.conf.erb#L192-L196) has a comment...