Skip to content

listphysicalnetworks: Honouring keyword parameter - #4511

Merged
yadvr merged 1 commit into
apache:masterfrom
shapeblue:fix-list-phy-nw
Dec 11, 2020
Merged

listphysicalnetworks: Honouring keyword parameter#4511
yadvr merged 1 commit into
apache:masterfrom
shapeblue:fix-list-phy-nw

Conversation

@davidjumani

Copy link
Copy Markdown
Contributor

Description

The listPhysicalNetworks API does not consider keyword. This PR fixes it
Required since the UI uses keyword for searches

Types of changes

  • Breaking change (fix or feature that would cause existing functionality to change)
  • New feature (non-breaking change which adds functionality)
  • Bug fix (non-breaking change which fixes an issue)
  • Enhancement (improves an existing feature and functionality)
  • Cleanup (Code refactoring and cleanup, that may add test cases)

Feature/Enhancement Scale or Bug Severity

Bug Severity

  • BLOCKER
  • Critical
  • Major
  • Minor
  • Trivial

How Has This Been Tested?

Before :

(localhost) 🐱 > list physicalnetworks filter=name, keyword=net2
{
"count": 2,
"physicalnetwork": [
{
"name": "Sandbox-pnet"
},
{
"name": "phynet2"
}
]
}

After :

(localhost) 🐱 > list physicalnetworks filter=name, keyword=net2
{
"count": 1,
"physicalnetwork": [
{
"name": "phynet2"
}
]
}

@davidjumani

Copy link
Copy Markdown
ContributorAuthor

@DaanHoogland @rhtyd Would it make sense to change name to return an exact match instead, since in this API, it's treated as keyword would be ?

@yadvryadvr added this to the 4.16.0.0 milestone Dec 2, 2020
@davidjumani

Copy link
Copy Markdown
ContributorAuthor

@blueorangutan package

@blueorangutan

Copy link
Copy Markdown

@davidjumani a Jenkins job has been kicked to build packages. I'll keep you posted as I make progress.

@blueorangutan

Copy link
Copy Markdown

Packaging result: ✔centos7 ✔centos8 ✔debian. JID-2456

@davidjumani

Copy link
Copy Markdown
ContributorAuthor

@blueorangutan test

@blueorangutan

Copy link
Copy Markdown

@davidjumani a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) has been kicked to run smoke tests

@GabrielBrascherGabrielBrascher left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code LGTM

@DaanHoogland

Copy link
Copy Markdown
Contributor

looks good @davidjumani

@DaanHoogland @rhtyd Would it make sense to change name to return an exact match instead, since in this API, it's treated as keyword would be ?

wouldn't do that, no telling what kind of relying on naming conventions big enterprises have atm.

@blueorangutan

Copy link
Copy Markdown

Trillian test result (tid-3301)
Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
Total time taken: 36910 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr4511-t3301-kvm-centos7.zip
Intermittent failure detected: /marvin/tests/smoke/test_human_readable_logs.py
Intermittent failure detected: /marvin/tests/smoke/test_vm_life_cycle.py
Smoke tests completed. 86 look OK, 0 have error(s)
Only failed tests results shown below:

TestResultTime (s)Test File

@yadvr
yadvr merged commit 28c67d2 into apache:masterDec 11, 2020
qrry added a commit to qrry/cloudstack that referenced this pull request Dec 23, 2020
* master:
server: add conditions for custom offerings (apache#4540)
vr: Ensuring dnsmasq.leases file is populated (apache#4529)
template: Ensuring template is cross zone if type changed to system (apache#4522)
storage: Fix hypervisor type cast to string (apache#4516)
db upgrade: fix sql exception: Access denied; you need (at least one of) the SUPER privilege(s) for this operation (apache#4533)
CLOUDSTACK-10423:Potential sensitive information disclosure (apache#4536)
jobs: The patch remove the password from resultObject and make it be humanreadable (apache#4538)
listphysicalnetworks: Honouring keyword parameter (apache#4511)
Fix NPE when Volume exists on secondary store but doesn't have a download URL (apache#4530)
apidoc issue (apache#4532)
db: Fix description of volume.stats.interval which is in milliseconds not seconds (apache#4526)
kvm: set cpu topology only if cpucore per socket is positive value (apache#4527)
xenserver: check and eject patch vbd for systemvms (apache#4525)
Fix warning when setup cloudstack-common (apache#4523)
kvm: FIX cpucorespersocket is not working on KVM (apache#4497)
change debug to warn for unknown exceptions (apache#4521)
Fix failure in validating IP address in case of multiple Management Servers (apache#4507)
Update log output for FirstFitPlanner (apache#4515)
ui: deprecate old UI and move to legacy to be served at /client/legacy (apache#4518)
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

complexity:trivial10 minnutes to a few days at mosttype:bug

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants

@davidjumani@blueorangutan@DaanHoogland@yadvr@GabrielBrascher