Как настроить среду основных инструментов Azure Functions и как это повлияет? - PullRequest
0 голосов
/ 26 апреля 2019

Я настроил проект maven с помощью архетипа функции azure и успешно запустил его с azure-functions:run. Журнал показывает:

Azure Functions Core Tools (2.6.1048 Commit hash: f289117b0d44b321307bae9c96cd910f92057735)
Function Runtime Version: 2.0.12408.0
Skipping 'AzureWebJobsStorage' from local settings as it's already defined in current environment variables.
...
[04/26/2019 08:45:14] Starting JobHost
[04/26/2019 08:45:14] Starting Host (HostId=wkmde9368071-516426360, InstanceId=d72816a7-a9d9-4bba-8d62-f7ba13877edd, Version=2.0.12408.0, ProcessId=31468, AppDomainId=1, InDebugMode=False, InDiagnosticMode=False, FunctionsExtensionVersion=)
[04/26/2019 08:45:14] Loading functions metadata
[04/26/2019 08:45:14] 1 functions loaded
[04/26/2019 08:45:14] WorkerRuntime: java. Will shutdown other standby channels
[04/26/2019 08:45:14] Generating 1 job function(s)
[04/26/2019 08:45:14] [INFO] {DefaultClassLoaderProvider.addUrl}: Loading file URL: file:/target/azure-functions/test-20190426102909343/test-0.1-SNAPSHOT.jar
[04/26/2019 08:45:14] Found the following functions:
[04/26/2019 08:45:14] Host.Functions.HttpTrigger-Java
[04/26/2019 08:45:14] 
[04/26/2019 08:45:14] Host initialized (164ms)
[04/26/2019 08:45:14] Host started (171ms)
[04/26/2019 08:45:14] Job host started
Hosting environment: Production

Я не мог найти, где "Hosting Environment" и почему написано "Production". Есть ли документация о том, как установить и что это указывает?

...