Skip to content

Commit d0522ae

Browse files
committed
Update colors
1 parent 3f9f55b commit d0522ae

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

examples/python/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ COPY --from=pyroscope/pyroscope:latest /usr/bin/pyroscope /usr/bin/pyroscope
66
COPY main.py ./main.py
77
COPY util.py ./util.py
88
COPY __init__.py ./__init__.py
9-
COPY fast_package ./fast_package
10-
COPY slow_module ./slow_module
9+
COPY a_module ./a_module
10+
COPY b_module ./b_module
1111

1212
ENV PYROSCOPE_APPLICATION_NAME=simple.python.app
1313
ENV PYROSCOPE_SERVER_ADDRESS=http://pyroscope:4040/

examples/python/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22
import threading
3-
from fast_package.fast_file import fast_function
4-
from slow_module.slow_file import slow_function
3+
from a_module.fast_file import fast_function
4+
from b_module.slow_file import slow_function
55

66
DURATION = 60 * 10 # ten minutes
77

0 commit comments

Comments
 (0)