Select to view content in your preferred language

Error message cloning Storymap from one Enterprise portal to another

74
0
Friday
Labels (1)
ZekeMI
by
Frequent Contributor

I've been working on cloning a StoryMap from our development portal to our production portal, using the code from the ArcGIS API for Python documentation. It works fine until the line

clone_list = gis_target.content.clone_items(items = [storymap], search_existing_items=True, folder = "Clone_Test")

 

This raises an error 

DeprecatedWarning: create_folder is deprecated as of 2.3.0 and has be removed in 3.0.0. Use `gis.content.folders.create` instead.
  self._clone_init()

 

The item still clones, though, presumably since it's only deprecated and not removed at this point. It also doesn't create the folder 'Clone_Test', maybe because 'search_existing_items' should be False, not True?

Currently on Enterprise 11.2, but will be moving to 11.3 next week, which I'm assuming from the error message means that the code will break. Is my thinking correct, and if so, what would be the correct code? I could use the 'gis.content.folders.create', but what about the actual cloning line? Thanks!

0 Kudos
0 Replies