Changeset 17290 in josm for trunk/src/org


Ignore:
Timestamp:
2020-11-02T16:21:53+01:00 (3 years ago)
Author:
GerdP
Message:

see #19582: Stays silent if download is incomplete cause of timeouts

  • re-throw OsmTransferException (19582-core.patch)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java

    r16611 r17290  
    347347            } catch (InterruptedException | ExecutionException e) {
    348348                Logging.error(e);
     349                if (e.getCause() instanceof OsmTransferException)
     350                    throw (OsmTransferException) e.getCause();
    349351            }
    350352        }
Note: See TracChangeset for help on using the changeset viewer.