haminhcong

Results 8 comments of haminhcong

## Reason After some experiments, I disabled disconnect method on `change_logging` context manager function https://github.com/netbox-community/netbox/blob/v3.2.3/netbox/extras/context_managers.py#L12 ```python @contextmanager def change_logging(request): """ Enable change logging by connecting the appropriate signals to their...

More information: The `post_save`, `m2m_changed`, `pre_delete` are global ~~variables~~ objects in Django, it means that these variables is shared between threads. Because of that, if you change this variable in...

> > Build Netbox Container Image with multi-threaded supported wsgi (gunicorn or uwsgi) > > This repo accepts issues for the core NetBox project only. If you are using the...

Hi, I don't see you change `templates/registry/registry-secret.yaml` file or `templates/registry/registry-dpl.yaml` file to use the secret in `.Values.registry.credentials.existingSecret` https://github.com/goharbor/harbor-helm/blob/master/templates/registry/registry-secret.yaml#L47 ``` REGISTRY_HTPASSWD: {{ htpasswd .Values.registry.credentials.username .Values.registry.credentials.password | b64enc | quote }} ```...

@golgoth31 Sorry, but I see that in file `templates/core/core-dpl.yaml` and file `templates/exporter/exporter-dpl.yaml` you are using variable `password` with lowercase ```yaml {{- if .Values.database.external.existingSecret }} - name: POSTGRESQL_PASSWORD valueFrom: secretKeyRef: name:...

> We use that values.yaml only but we have updated some values like #regionendpoint: http://myobjects.local (as per this code) we use https so that this issue occurs... > > looks...

@jeremystretch Hi Jeremy, I think your solution in [9439-multi-threading](https://github.com/netbox-community/netbox/tree/9439-multi-threading) is good. I tested with branch `9439-multi-threading` and branch `develop` and here is the result ## Branch develop - Run netbox...

> I think there's something basically wrong with your assumption here: > > > If celery work correctly, celery worker will process all 100 jobs in 10 seconds. > >...