| Summary: | Broker does not send the deconfigure event to nurtrue db | ||||||
|---|---|---|---|---|---|---|---|
| Product: | OpenShift Online | Reporter: | Qiushui Zhang <qiuzhang> | ||||
| Component: | Pod | Assignee: | Rajat Chopra <rchopra> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | libra bugs <libra-bugs> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 2.x | CC: | rchopra, xtian | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2013-10-17 13:32:31 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: | |||||
| Attachments: |
|
||||||
|
Description
Qiushui Zhang
2013-09-27 10:52:55 UTC
Created attachment 803892 [details]
log from instance
Fixed with pull request : https://github.com/openshift/origin-server/pull/3732 Tested on devenv_3844. mysql> select d.user_name, d.name "app_name", c.name "action", c.created_at, c.language from (select a.application_guid , b.name, a.id, a.uuid, a.language, a.created_at from events a, actions b where a.action_id = b.id) c, applications d where c.application_guid = d.guid order by c.created_at desc limit 10; +-----------+-----------+----------------+---------------------+--------------+ | user_name | app_name | action | created_at | language | +-----------+-----------+----------------+---------------------+--------------+ | walter | app0929 | deconfigure | 2013-09-29 08:50:09 | NULL | | walter | app0929 | post-configure | 2013-09-29 08:49:38 | php-5.3 | | walter | app0929 | configure | 2013-09-29 08:49:33 | php-5.3 | | walter | app4 | post-configure | 2013-09-27 17:28:20 | php-5.3 | | walter | app4 | configure | 2013-09-27 17:28:15 | php-5.3 | | walter | app3 | post-configure | 2013-09-27 17:27:36 | php-5.3 | | walter | app3 | configure | 2013-09-27 17:27:31 | php-5.3 | | walter | ews1 | post-configure | 2013-09-27 17:24:47 | jbossews-1.0 | | walter | ews1 | configure | 2013-09-27 17:24:43 | jbossews-1.0 | | walter | wordpress | push | 2013-09-27 17:15:47 | NULL | +-----------+-----------+----------------+---------------------+--------------+ 10 rows in set (0.70 sec) Note that the new created app app0929. It has all the expected action. Mark it as verified. |