Azure-docs: Run Database migrations: https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-python-postgresql-app?tabs=bash#run-database-migrations

Created on 26 Jun 2020  Â·  11Comments  Â·  Source: MicrosoftDocs/azure-docs

While in the SSH session, when I do source /antenv/bin/activate it returns: " -bash: /antenv/bin/activate: No such file or directory"

I also noticed in the manage.py file ( following these instructions https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-python-postgresql-app?tabs=bash#prepare-app-for-app-service) that there is a problem with line 10:
try:
from django.core.management import execute_from_command_line
unindent does not match any outer indentation level (, line 10)


Document Details

⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Pri2 app-servicsvc cxp doc-bug triaged

All 11 comments

@LucaOtto Thank you for bringing this to our notice, our team will look into it and get back to you at the earliest.

Hi @LucaOtto, make sure you didn't for the preceding '/' in source /antenv/bin/activate. For you line 10 error, make sure the from django.core.management... is property indented.

#!/usr/bin/env python
import os
import sys

if __name__ == '__main__':
    if os.environ.get('DJANGO_ENV') == 'production':
        os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'azuresite.production')
    else:
        os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'azuresite.settings')    
    try:
        from django.core.management import execute_from_command_line
    except ImportError as exc:
        raise ImportError(
            "Couldn't import Django. Are you sure it's installed and "
            "available on your PYTHONPATH environment variable? Did you "
            "forget to activate a virtual environment?"
        ) from exc
    execute_from_command_line(sys.argv)

Hope this helps. Let me know if you run into further problems.

Hi Ryan,

Actually I managed to fix all that and went further on.

When I run the database migrationshttps://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-python-postgresql-app?tabs=bash#run-database-migrations I’m seeing the error with the sqllite db ( screenshot below). it states that it is locked. Any idea why?

Thanks
Luca

[A picture containing sitting, table Description automatically generated]

Distinti Saluti /Best Regards

Luca Ottonari
Azurehttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fazure.microsoft.com%2Fit-it%2F&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=AYtZRUZC%2B3OKIczQuWEmJ0wuc7xpLLiVwxTYkZlo1b0%3D&reserved=0 Cloud Solution Architect
[cid:[email protected]]https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.linkedin.com%2Fin%2Flucaottonari&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=fIwW3yjOFjpmUVU7e7pRzheUVQaMDf6AwGfpIE8AgOA%3D&reserved=0
[A close up of a logo Description automatically generated]
[cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftwitter.com%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=r2emKPXcfzRxIcjxUWawo%2FTUWq%2B6928NT8sFEUkODHc%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767305035&sdata=izyrlVZ%2FHVLS%2FRW%2FJlVr5yW5IQxPfqXzd%2Fni1jbvMaw%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767305035&sdata=4jLgzidrSlfwMJaX%2FnS%2BUrorMpvweOPZTF65imMCoaI%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fuser%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767314992&sdata=RHs3bSuD2oZzzME8UelvPb7XiiPM2XJreCbGPOWJ1Ag%3D&reserved=0

Informativa sulla privacy di Microsofthttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fprivacy.microsoft.com%2Fit-it%2Fprivacystatement&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767314992&sdata=B3HvActhEZ6dySTInzY%2FoxCkpkOWwAo%2B9MMSQ58ZAkQ%3D&reserved=0

From: Ryan Hill notifications@github.com
Sent: 29 June 2020 23:59
To: MicrosoftDocs/azure-docs azure-docs@noreply.github.com
Cc: Luca Ottonari Luca.Ottonari@microsoft.com; Mention mention@noreply.github.com
Subject: Re: [MicrosoftDocs/azure-docs] Run Database migrations: https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-python-postgresql-app?tabs=bash#run-database-migrations (#57960)

Hi @LucaOttohttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FLucaOtto&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C271108d25e564a23677d08d81c7ffe8e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637290683341908646&sdata=FuGZWT7JILzDnvgLuvgwIZcC1xKUJz8StZVt6RV%2FBmA%3D&reserved=0, make sure you didn't for the preceding '/' in source /antenv/bin/activate. For you line 10 error, make sure the from django.core.management... is property indented.

!/usr/bin/env python

import os

import sys

if __name__ == '__main__':

if os.environ.get('DJANGO_ENV') == 'production':

    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'azuresite.production')

else:

    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'azuresite.settings')

try:

    from django.core.management import execute_from_command_line

except ImportError as exc:

    raise ImportError(

        "Couldn't import Django. Are you sure it's installed and "

        "available on your PYTHONPATH environment variable? Did you "

        "forget to activate a virtual environment?"

    ) from exc

execute_from_command_line(sys.argv)

Hope this helps. Let me know if you run into further problems.

—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHubhttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FMicrosoftDocs%2Fazure-docs%2Fissues%2F57960%23issuecomment-651411926&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C271108d25e564a23677d08d81c7ffe8e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637290683341908646&sdata=qLJHWBAnElJ%2FgpBC4CVL667EZqWAkqQZ3lK5a%2F9N8gk%3D&reserved=0, or unsubscribehttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAKDQXCHOMUCEV5N2EAMJX63RZEMCZANCNFSM4OJOIBGA&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C271108d25e564a23677d08d81c7ffe8e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637290683341918602&sdata=hZHgFkfTFUyUGoXLlBjY1JXqNZtxcCbj9XDBSq8Bz7U%3D&reserved=0.

Hi @LucaOtto, the screen shot didn't come through in your email. Were there any connections to the db other than your app when you attempted to run python manage.py migrate?

Hi Ryan,

See below. To answer your question: I simply followed the tutorial, and I haven’t deviate from what’s described in it.

It’s also confusing because the article specifies in the tile PostgresSQL ( but only in Azure), locally it uses a Sqllite which seems to be the problem here.

I hope it helps to clarify.

Thank you again.

Luca

W
Last login: Tue Jun 30 15:52:51 2020 from 172.16.1.3


/ _ \ __________ _________ ____
/ /_\ ___ / | _ __ _/ __ \
/ | \/ /| | /| | \/\ ___/
____|__ /_____ ____/ |__| ___ >
\/ \/ \/

A P P S E R V I C E O N L I N U X

Documentation: http://aka.ms/webapp-linux
Python 3.7.7
Note: Any data outside '/home' is not persisted
root@fe0138588f6a:/home# cd site/wwwroot
root@fe0138588f6a:/home/site/wwwroot# source /antenv/bin/activate
(antenv) root@fe0138588f6a:/home/site/wwwroot# pip install -r requirements.txt
Requirement already satisfied: Django==2.1.2 in /opt/python/3.7.7/lib/python3.7/site-packages (from -r requirements.txt (line 1)) (2.1.2)
Requirement already satisfied: psycopg2-binary==2.8.4 in /opt/python/3.7.7/lib/python3.7/site-packages (from -r requirements.txt (line 2)) (2.8.4)
Requirement already satisfied: pytz==2018.5 in /opt/python/3.7.7/lib/python3.7/site-packages (from -r requirements.txt (line 3)) (2018.5)
Requirement already satisfied: whitenoise==4.1 in /opt/python/3.7.7/lib/python3.7/site-packages (from -r requirements.txt (line 4)) (4.1)
(antenv) root@fe0138588f6a:/home/site/wwwroot# python manage.py migrate
Operations to perform:
Apply all migrations: admin, auth, contenttypes, polls, sessions
Running migrations:
Traceback (most recent call last):
File "/opt/python/3.7.7/lib/python3.7/site-packages/django/db/backends/base/base.py", line 239, in _commit
return self.connection.commit()
sqlite3.OperationalError: database is locked

Distinti Saluti /Best Regards

Luca Ottonari
Azurehttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fazure.microsoft.com%2Fit-it%2F&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=AYtZRUZC%2B3OKIczQuWEmJ0wuc7xpLLiVwxTYkZlo1b0%3D&reserved=0 Cloud Solution Architect
[cid:[email protected]]https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.linkedin.com%2Fin%2Flucaottonari&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=fIwW3yjOFjpmUVU7e7pRzheUVQaMDf6AwGfpIE8AgOA%3D&reserved=0
[A close up of a logo Description automatically generated]
[cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftwitter.com%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=r2emKPXcfzRxIcjxUWawo%2FTUWq%2B6928NT8sFEUkODHc%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767305035&sdata=izyrlVZ%2FHVLS%2FRW%2FJlVr5yW5IQxPfqXzd%2Fni1jbvMaw%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767305035&sdata=4jLgzidrSlfwMJaX%2FnS%2BUrorMpvweOPZTF65imMCoaI%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fuser%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767314992&sdata=RHs3bSuD2oZzzME8UelvPb7XiiPM2XJreCbGPOWJ1Ag%3D&reserved=0

Informativa sulla privacy di Microsofthttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fprivacy.microsoft.com%2Fit-it%2Fprivacystatement&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767314992&sdata=B3HvActhEZ6dySTInzY%2FoxCkpkOWwAo%2B9MMSQ58ZAkQ%3D&reserved=0

From: Ryan Hill notifications@github.com
Sent: 30 June 2020 23:49
To: MicrosoftDocs/azure-docs azure-docs@noreply.github.com
Cc: Luca Ottonari Luca.Ottonari@microsoft.com; Mention mention@noreply.github.com
Subject: Re: [MicrosoftDocs/azure-docs] Run Database migrations: https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-python-postgresql-app?tabs=bash#run-database-migrations (#57960)

Hi @LucaOttohttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FLucaOtto&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7Ca23d6a28b2d2460d049a08d81d47b89e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637291541169286991&sdata=3nuUxGEzynHOfWRusGT6j%2FRsfNXINnnn2Mt7FzHFOVI%3D&reserved=0, the screen shot didn't come through in your email. Were there any connections to the db other than your app when you attempted to run python manage.py migrate?

—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHubhttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FMicrosoftDocs%2Fazure-docs%2Fissues%2F57960%23issuecomment-652086149&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7Ca23d6a28b2d2460d049a08d81d47b89e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637291541169286991&sdata=JYkd2B8%2BMPa0WZDYU5nbJdHTuLSUSxtF2V8JNb3%2Bqig%3D&reserved=0, or unsubscribehttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAKDQXCANFHT3R6JWLFN6CCDRZJTUFANCNFSM4OJOIBGA&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7Ca23d6a28b2d2460d049a08d81d47b89e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637291541169296984&sdata=pyz%2FW5C7iV%2BSWUhDirvyQYtQoI2E4mhugL7wJcuAa%2BA%3D&reserved=0.

The sqlite mention is especially weird because I didn't get that as you can see below.

2020-06-29 19_04_09-ssh___172 16 1 2

When I ran az webapp config appsettings set --name <app-name> --resource-group <app-resource-group> --settings DJANGO_ENV="production" DBHOST="<postgresql-name>.postgres.database.azure.com" DBUSER="root@<postgresql-name>" DBPASS="Pollsdb1" DBNAME="pollsdb" the postgresql-name was set to the instance I created using az postgres up --resource-group myResourceGroup --location westus2 --server-name <postgresql-name> --database-name pollsdb --admin-user <admin-username> --admin-password <admin-password> --ssl-enforcement Enabled.

Yes, I’m really puzzled by this and I’m not sure how it happened.

Distinti Saluti /Best Regards

Luca Ottonari
Azurehttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fazure.microsoft.com%2Fit-it%2F&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=AYtZRUZC%2B3OKIczQuWEmJ0wuc7xpLLiVwxTYkZlo1b0%3D&reserved=0 Cloud Solution Architect
[cid:[email protected]]https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.linkedin.com%2Fin%2Flucaottonari&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=fIwW3yjOFjpmUVU7e7pRzheUVQaMDf6AwGfpIE8AgOA%3D&reserved=0
[A close up of a logo Description automatically generated]
[cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Ftwitter.com%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767295082&sdata=r2emKPXcfzRxIcjxUWawo%2FTUWq%2B6928NT8sFEUkODHc%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767305035&sdata=izyrlVZ%2FHVLS%2FRW%2FJlVr5yW5IQxPfqXzd%2Fni1jbvMaw%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767305035&sdata=4jLgzidrSlfwMJaX%2FnS%2BUrorMpvweOPZTF65imMCoaI%3D&reserved=0 [cid:[email protected]] https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fuser%2FMicrosoft&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767314992&sdata=RHs3bSuD2oZzzME8UelvPb7XiiPM2XJreCbGPOWJ1Ag%3D&reserved=0

Informativa sulla privacy di Microsofthttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fprivacy.microsoft.com%2Fit-it%2Fprivacystatement&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C05dd4980557d492ea63a08d7fe1cfc3c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637257272767314992&sdata=B3HvActhEZ6dySTInzY%2FoxCkpkOWwAo%2B9MMSQ58ZAkQ%3D&reserved=0

From: Ryan Hill notifications@github.com
Sent: 01 July 2020 23:38
To: MicrosoftDocs/azure-docs azure-docs@noreply.github.com
Cc: Luca Ottonari Luca.Ottonari@microsoft.com; Mention mention@noreply.github.com
Subject: Re: [MicrosoftDocs/azure-docs] Run Database migrations: https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-python-postgresql-app?tabs=bash#run-database-migrations (#57960)

The sqlite mention is especially weird because I didn't get that as you can see below.

[2020-06-29 19_04_09-ssh___172 16 1 2]https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fuser-images.githubusercontent.com%2F47189704%2F86297591-be13a300-bbc9-11ea-85d4-4f93ba6c4592.png&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C80921dc9f91149573c2008d81e0f77e8%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637292399075491633&sdata=qG76PPE%2FMpkmo2quPgjzc%2B57eBtLkyOfljbqFTgiy20%3D&reserved=0

When I ran az webapp config appsettings set --name --resource-group --settings DJANGO_ENV="production" DBHOST=".postgres.database.azure.com" DBUSER="root@" DBPASS="Pollsdb1" DBNAME="pollsdb" the postgresql-name was set to the instance I created using az postgres up --resource-group myResourceGroup --location westus2 --server-name --database-name pollsdb --admin-user --admin-password --ssl-enforcement Enabled.

—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHubhttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FMicrosoftDocs%2Fazure-docs%2Fissues%2F57960%23issuecomment-652680182&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C80921dc9f91149573c2008d81e0f77e8%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637292399075491633&sdata=Gy%2BOSloSXMnGMeboPbM2gqRv3gDs%2FrKrupoRR2qbBNQ%3D&reserved=0, or unsubscribehttps://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAKDQXCCEKCD7LGCUH2OCUW3RZO3GDANCNFSM4OJOIBGA&data=02%7C01%7CLuca.Ottonari%40microsoft.com%7C80921dc9f91149573c2008d81e0f77e8%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637292399075501630&sdata=%2BTZcp%2BP8%2BY%2FLvzc9HfX7x3kKInkrvr0bxyaqRcIQHiY%3D&reserved=0.

@LucaOtto, can you send an email to _AzCommunity[at]microsoft[dot]com_ so we can look more closely at this issue.

Hi @RyanHill-MSFT . It seems that this email address is no longer valid.

Thanks
Luca

Hi @RyanHill-MSFT . It seems that this email address is no longer valid.

Thanks

Luca

@LucaOtto I've updated the email address. Was missing markdown character.

@LucaOtto Since we will be working with you closely here. (AzCommunity[at]microsoft[dot]com) Will now close this here.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

JeffLoo-ong picture JeffLoo-ong  Â·  3Comments

paulmarshall picture paulmarshall  Â·  3Comments

Agazoth picture Agazoth  Â·  3Comments

spottedmahn picture spottedmahn  Â·  3Comments

behnam89 picture behnam89  Â·  3Comments