We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The error is:
CISCO-STACK-MIB:1730:20: branch (<ident>)? was accepted but did not progress the lexer at .../CISCO-STACK-MIB:1730:20
The part that fails is: DEFVAL { { } }
DEFVAL { { } }
The syntax of the object is BITS which means that the expected default is no bit set
BITS
The text was updated successfully, but these errors were encountered:
This was already addressed in #17. Please make sure you are using Go modules and properly pulling in github.com/alecthomas/[email protected].
Sorry, something went wrong.
Hi, it seems i'm up-to-date:
$ grep -E '(participle|smi)' go.mod github.com/alecthomas/participle v0.7.1 // indirect github.com/sleepinggenius2/gosmi v0.4.3
There's your problem, you're pulling in v0.7.1, not v0.4.1.
Ok, I see. I'm supposed to downgrade then, that was indirect/added automatically. Weird but it works. Closing, thanks.
No branches or pull requests
The error is:
CISCO-STACK-MIB:1730:20: branch (<ident>)? was accepted but did not progress the lexer at .../CISCO-STACK-MIB:1730:20
The part that fails is:
DEFVAL { { } }
The syntax of the object is
BITS
which means that the expected default is no bit setThe text was updated successfully, but these errors were encountered: