mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-29 03:03:10 +02:00
[225902] [dstore] RSE download hangs
This commit is contained in:
parent
9199cca7a9
commit
5d57470548
1 changed files with 4 additions and 3 deletions
|
@ -17,6 +17,7 @@
|
||||||
* David McKnight (IBM) - [216252] MessageFormat.format -> NLS.bind
|
* David McKnight (IBM) - [216252] MessageFormat.format -> NLS.bind
|
||||||
* Martin Oberhuber (Wind River) - [219952] Use MessageFormat for download progress message
|
* Martin Oberhuber (Wind River) - [219952] Use MessageFormat for download progress message
|
||||||
* David McKnight (IBM) - [222448] [dstore] update DownloadListener to handle timeouts and nudge
|
* David McKnight (IBM) - [222448] [dstore] update DownloadListener to handle timeouts and nudge
|
||||||
|
* David McKnight (IBM) - [225902] [dstore] RSE download hangs
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.services.dstore.util;
|
package org.eclipse.rse.services.dstore.util;
|
||||||
|
@ -284,10 +285,10 @@ public class DownloadListener implements IDomainListener
|
||||||
private void wakeupServer(DataElement status)
|
private void wakeupServer(DataElement status)
|
||||||
{
|
{
|
||||||
if (status != null)
|
if (status != null)
|
||||||
{
|
{
|
||||||
// token command to wake up update handler
|
// token command to wake up update handler
|
||||||
DataElement subject = (DataElement)status.getParent().get(0);
|
DataElement cmdDescriptor = _dataStore.findCommandDescriptor("C_REFRESH"); //$NON-NLS-1$
|
||||||
DataElement cmdDescriptor = _dataStore.localDescriptorQuery(subject.getDescriptor(), "C_QUERY_EXISTS");
|
DataElement subject = status.getParent().get(0);
|
||||||
if (cmdDescriptor != null)
|
if (cmdDescriptor != null)
|
||||||
{
|
{
|
||||||
_dataStore.command(cmdDescriptor, subject);
|
_dataStore.command(cmdDescriptor, subject);
|
||||||
|
|
Loading…
Add table
Reference in a new issue