Bug 722521
| Summary: | quick package install result in operation failure | ||
|---|---|---|---|
| Product: | [Retired] Pulp | Reporter: | dgao |
| Component: | user-experience | Assignee: | James Slagle <jslagle> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Preethi Thomas <pthomas> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | unspecified | CC: | jslagle, skarmark |
| Target Milestone: | --- | ||
| Target Release: | Sprint 26 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2011-08-16 12:11:01 UTC | Type: | --- |
| 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: | 647488 | ||
|
Description
dgao
2011-07-15 14:59:36 UTC
The issue here was the change I made for bugzilla #709500 with the --wait parameter. After further discussion, it makes sense to restore the previous behavior and instead change the option to be --nowait. committed to pulp master: 8c54707fc4deae65fb11f40746cbad1d3d6b79fc build: 0.210 verified
[root@preethi ~]# cat quick_pkg_install.sh
#! /bin/bash
pulp-admin package install --consumerid=pulp-client -n zsh
pulp-admin package install --consumerid=pulp-client -n screen
[root@preethi ~]# ./quick_pkg_install.sh
Created task id: bfe3b607-c200-11e0-885b-002564a85a58
Task is scheduled for: None
Waiting: [\]
['zsh-4.3.10-6.fc14.x86_64'] installed on pulp-client
Created task id: c7897fd9-c200-11e0-ba7a-002564a85a58
Task is scheduled for: None
Waiting: [\]
['screen-4.0.3-15.fc12.x86_64'] installed on pulp-client
pulp.log
2011-08-08 16:55:29,414 8132:140569691014912: pulp.server.webservices.controllers.services:INFO: services:338 agent status: GET received
2011-08-08 16:55:29,767 8132:140569313539840: gofer.messaging.policy:INFO: policy:139 sent (pulp-client):
{
"classname": "Packages",
"kws": {},
"args": [
[
"zsh"
],
false,
true
],
"method": "install"
}
2011-08-08 16:55:39,157 8132:140569313539840: pulp.server.tasking.task:INFO: task:367 Task succeeded: Task bfe3b607-c200-11e0-885b-002564a85a58: ConsumerApi.__installpackages(pulp-client, ['zsh'], )
2011-08-08 16:55:42,211 8132:140569892341504: pulp.server.webservices.controllers.services:INFO: services:338 agent status: GET received
2011-08-08 16:55:42,601 8132:140569313539840: gofer.messaging.policy:INFO: policy:139 sent (pulp-client):
{
"classname": "Packages",
"kws": {},
"args": [
[
"screen"
],
false,
true
],
"method": "install"
}
2011-08-08 16:55:46,660 8132:140569313539840: pulp.server.tasking.task:INFO: task:367 Task succeeded: Task c7897fd9-c200-11e0-ba7a-002564a85a58: ConsumerApi.__installpackages(pulp-client, ['screen'], )
client.log
2011-08-08 16:45:00,128 [INFO][pulp-client] dispatch() @ dispatcher.py:431 - dispatching:{
"classname": "Packages",
"kws": {},
"args": [
[
"zsh"
],
false,
true
],
"method": "install",
"auth": {
"secret": "dd7db40a8df3e4983f09bd1959188a7a3192ef8a43e03718437f8f45ff3e76cb",
"uuid": "'pulp-client'"
}
}
2011-08-08 16:45:00,148 [INFO][pulp-client] install() @ pulpplugin.py:193 - installing packages: ['zsh'] import keys: False
2011-08-08 16:45:12,958 [INFO][pulp-client] dispatch() @ dispatcher.py:431 - dispatching:{
"classname": "Packages",
"kws": {},
"args": [
[
"screen"
],
false,
true
],
"method": "install",
"auth": {
"secret": "dd7db40a8df3e4983f09bd1959188a7a3192ef8a43e03718437f8f45ff3e76cb",
"uuid": "'pulp-client'"
}
}
2011-08-08 16:45:12,992 [INFO][pulp-client] install() @ pulpplugin.py:193 - installing packages: ['screen'] import keys: False
Closing with Community Release 15 pulp-0.0.223-4. Closing with Community Release 15 pulp-0.0.223-4. |