Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ISSUE: can we drop the 'extensions' line on the definition of AuthMessage in BookkeeperProtocol.proto ?

this message

Code Block
message AuthMessage {
    required string authPluginName = 1;
    extensions 1000 to max;
}

will become

Code Block
message AuthMessage {
    required string authPluginName = 1;
    required bytes  token = 2;
}

 

 

Rolling upgrade to switch from authentication types:

...