Skip to content
Discussion options

You must be logged in to vote

Is it possible that information mix-up between the two instances due to the use of redis ?

Yes, if they are both pointing to the same redis instance (port and database number).

Or maybe it's only a cache issue ?

Caching is what you see, but it will also mix up background jobs like webhooks which also are queued via redis.

You should point your second netbox instance to different database numbers within redis.

REDIS = {
    'tasks': {
        ...
        'DATABASE': 0,  # change to 2
    },
    'caching': {
        ...
        'DATABASE': 1,  # change to 3
    }

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@quentindavid
Comment options

@candlerb
Comment options

@quentindavid
Comment options

Answer selected by quentindavid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants