-
Notifications
You must be signed in to change notification settings - Fork 159
Added unit tests for identity server, fixed small spec inconsistency #50
New issue
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
Added unit tests for identity server, fixed small spec inconsistency #50
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: davidz627 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
f5e0821
to
eee158c
Compare
@@ -52,6 +57,7 @@ func (gceDriver *GCEDriver) SetupGCEDriver(cloudProvider gce.GCECompute, mounter | |||
|
|||
gceDriver.name = name | |||
gceDriver.nodeID = nodeID | |||
gceDriver.vendorVersion = vendorVersion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a place down in the cloud provider file where you're putting the driver name/version in the string. You may want to plumb this down to there too
/hold Going to implement better compile time versioning injection |
48bcfcd
to
f558d59
Compare
/hold cancel Added version compile time injection |
@msau42 ready for review |
/lgtm |
f558d59
to
dd7e5c0
Compare
/lgtm |
dd7e5c0
to
f5d59ac
Compare
/retest |
@msau42 for re-lgtm, sorry |
/lgtm |
STOR-1392: Rebase to v1.12.2 for OCP 4.15
Added unit tests. In the process found out the GetPluginInfo was missing vendor version so it was fixed to return the vendor version now.
vendor version is: The version of the driver as declared by the vendor (driver author)
so it makes sense to be a const and not a flag
/assign @msau42
Fixes: #47