Bug 1291670
| Summary: | Connection to VDB remains valid after VDB is undeployed | |||
|---|---|---|---|---|
| Product: | [JBoss] JBoss Data Virtualization 6 | Reporter: | Juraj Duráni <jdurani> | |
| Component: | Teiid | Assignee: | Van Halbert <vhalbert> | |
| Status: | CLOSED NOTABUG | QA Contact: | Juraj Duráni <jdurani> | |
| Severity: | unspecified | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 6.2.0 | CC: | aszczucz, blafond, drieden, jolee, mbaluch, thauser, vhalbert | |
| Target Milestone: | --- | |||
| Target Release: | --- | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1291719 (view as bug list) | Environment: | ||
| Last Closed: | 2015-12-15 13:29:54 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1291719 | |||
Steven Hawkins <shawkins> updated the status of jira TEIID-3864 to Resolved Steven Hawkins <shawkins> updated the status of jira TEIID-3864 to Closed |
Description of problem: Connection to VDB remains valid after VDB is undeployed. How reproducible: Connection con = TeiidDriver.getInstance().connect("jdbc:teiid:myvdb@mm://localhost:31000;user=user;password=password", new Properties()); System.out.println(con.isValid(1)); // undeploy VDB System.out.println(con.isValid(1)); Actual results: true true Expected results: true false