Skip to content

Commit

Permalink
fixes issue with guides.
Browse files Browse the repository at this point in the history
  • Loading branch information
achapkowski committed Aug 16, 2024
1 parent 38caf6b commit cc74e3c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@
" \"https://rextapilnx02eb.esri.com/server/rest/services/WashingtonCounty/\"\n",
")\n",
"gis = GIS(\n",
" \"https://rextapilnx02eb.esri.com/portal/\",\n",
" \"gisproadv2\",\n",
" \"portalaccount1\",\n",
" \"https://myenterprisesite.com/portal/\",\n",
" \"my_user_name\",\n",
" \"my_secure_password\",\n",
" verify_cert=False,\n",
")\n",
"\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
" \"https://rextapilnx02eb.esri.com/server/rest/services/WashingtonCounty/\"\n",
")\n",
"gis = GIS(\n",
" \"https://rextapilnx02eb.esri.com/portal/\",\n",
" \"gisproadv2\",\n",
" \"portalaccount1\",\n",
" \"https://myenterprisesite.com/portal/\",\n",
" \"my_user_name\",\n",
" \"my_secure_password\",\n",
" verify_cert=False,\n",
")"
]
Expand Down Expand Up @@ -184,13 +184,13 @@
"name": "stdout",
"output_type": "stream",
"text": [
"gisproadv2.fabric_editor_1\n"
"my_user_name.fabric_editor_1\n"
]
},
{
"data": {
"text/plain": [
"{'versionInfo': {'versionName': 'gisproadv2.fabric_editor_1',\n",
"{'versionInfo': {'versionName': 'my_user_name.fabric_editor_1',\n",
" 'versionGuid': '{EF1752A9-DF21-4D9B-819D-55F3D56BCE80}',\n",
" 'versionId': 16,\n",
" 'description': '',\n",
Expand Down Expand Up @@ -239,7 +239,7 @@
{
"data": {
"text/plain": [
"['sde.DEFAULT', 'gisproadv2.fabric_editor_1', 'creator2.merge_version_1']"
"['sde.DEFAULT', 'my_user_name.fabric_editor_1', 'creator2.merge_version_1']"
]
},
"execution_count": 14,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
" \"https://rextapilnx02eb.esri.com/server/rest/services/WashingtonCounty/\"\n",
")\n",
"gis = GIS(\n",
" \"https://rextapilnx02eb.esri.com/portal/\",\n",
" \"gisproadv2\",\n",
" \"portalaccount1\",\n",
" \"https://myenterprisesite.com/portal/\",\n",
" \"my_user_name\",\n",
" \"my_secure_password\",\n",
" verify_cert=False,\n",
")\n",
"\n",
Expand Down Expand Up @@ -91,7 +91,7 @@
{
"data": {
"text/plain": [
"'gisproadv2.new_record_version'"
"'my_user_name.new_record_version'"
]
},
"execution_count": 3,
Expand Down
6 changes: 3 additions & 3 deletions guide/04-feature-data-and-analysis/part4_query_parcels.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@
" \"https://rextapilnx02eb.esri.com/server/rest/services/WashingtonCounty/\"\n",
")\n",
"gis = GIS(\n",
" \"https://rextapilnx02eb.esri.com/portal/\",\n",
" \"gisproadv2\",\n",
" \"portalaccount1\",\n",
" \"https://myenterprisesite.com/portal/\",\n",
" \"my_user_name\",\n",
" \"my_secure_password\",\n",
" verify_cert=False,\n",
")\n",
"\n",
Expand Down
10 changes: 5 additions & 5 deletions guide/04-feature-data-and-analysis/part5_merge_parcels.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
" \"https://rextapilnx02eb.esri.com/server/rest/services/WashingtonCounty/\"\n",
")\n",
"gis = GIS(\n",
" \"https://rextapilnx02eb.esri.com/portal/\",\n",
" \"gisproadv2\",\n",
" \"portalaccount1\",\n",
" \"https://myenterprisesite.com/portal/\",\n",
" \"my_user_name\",\n",
" \"my_secure_password\",\n",
" verify_cert=True,\n",
")\n",
"\n",
Expand All @@ -82,7 +82,7 @@
{
"data": {
"text/plain": [
"'gisproadv2.merge_version_1'"
"'my_user_name.merge_version_1'"
]
},
"execution_count": 42,
Expand Down Expand Up @@ -472,7 +472,7 @@
"metadata": {},
"outputs": [],
"source": [
"version = version_management_server.get(f\"gisproadv2.{new_version_name}\")\n",
"version = version_management_server.get(f\"my_user_name.{new_version_name}\")\n",
"version.reconcile()\n",
"version.post()\n",
"version.delete()"
Expand Down

0 comments on commit cc74e3c

Please sign in to comment.