#4155 closed defect (fixed)
Conflict dialog: JOSM still uploads data even though there's no need to after a conflict resolution
Reported by: | Owned by: | team | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | Core | Version: | latest |
Keywords: | conflict, upload | Cc: |
Description (last modified by )
- Edit way Foo in JOSM, set it to highway=motorway
- Edit way Foo in Potlatch, set it to highway=residential
- Edit way Foo in JOSM, set it to highway=unclassified
Now when I try to upload JOSM throws a conflict because I'm trying to upload a highway=unclassified way to the server that has changed to highway=residential since I last saw it, so far so good.
But with the conflict resolved JOSM still thinks the way is modified and will happily upload it to the server even though that will change no data, here's an example of JOSM uploading a changeset (2393) that did nothing:
<?xml version="1.0" encoding="UTF-8"?> <osm version="0.6" generator="OpenStreetMap server"> <way id="49792" visible="true" timestamp="2009-12-12T10:54:39Z" user="Ævar Arnfjörð Bjarmason" uid="11" version="1" changeset="2391"> <nd ref="1168763"/> <nd ref="1168764"/> <nd ref="1168762"/> <nd ref="1168761"/> <nd ref="1168763"/> <tag k="highway" v="motorway"/> <tag k="name" v="bleh"/> </way> <way id="49792" visible="true" timestamp="2009-12-12T10:55:25Z" user="Ævar Arnfjörð Bjarmason" uid="11" version="2" changeset="2392"> <nd ref="1168763"/> <nd ref="1168764"/> <nd ref="1168762"/> <nd ref="1168761"/> <nd ref="1168763"/> <tag k="highway" v="residential"/> <tag k="name" v="bleh"/> </way> <way id="49792" visible="true" timestamp="2009-12-12T10:57:55Z" user="Ævar Arnfjörð Bjarmason" uid="11" version="3" changeset="2393"> <nd ref="1168763"/> <nd ref="1168764"/> <nd ref="1168762"/> <nd ref="1168761"/> <nd ref="1168763"/> <tag k="highway" v="residential"/> <tag k="name" v="bleh"/> </way> </osm>
Instead JOSM should track the result of conflict resolutions and check if the user opted to keep the server data, if that's the case then it shouldn't needlessly upload it again.
Attachments (0)
Change History (4)
comment:1 by , 15 years ago
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 5 years ago
Description: | modified (diff) |
---|
Related to #4088.