We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 692ea3a commit 5dc0af0Copy full SHA for 5dc0af0
elastic_datashader/routers/tms.py
@@ -1,6 +1,5 @@
1
from datetime import datetime, timezone
2
from os import getpid
3
-from socket import gethostname
4
from typing import Optional
5
import time
6
import uuid
@@ -111,7 +110,7 @@ def create_datashader_tiles_entry(es, **kwargs) -> None:
111
110
'''
112
doc_info = {
113
**kwargs,
114
- 'host': gethostname(),
+ 'host': config.hostname,
115
'pid': getpid(),
116
'timestamp': datetime.now(timezone.utc),
117
}
0 commit comments