File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ uninstall:
24
24
rm -rf $(DESTDIR )$(PREFIX ) /bin/gitfs
25
25
26
26
$(BUILD_DIR ) /gitfs : $(BUILD_DIR ) $(VIRTUAL_ENV ) /bin/pex
27
- $(VIRTUAL_ENV ) /bin/pex -r ' fusepy==2.0.2 ' -r ' pygit2==0.24.0 ' -r ' atomiclong==0.1.1 ' -s . - e gitfs:mount -o $(BUILD_DIR ) /gitfs
27
+ $(VIRTUAL_ENV ) /bin/pex -v --disable-cache -r requirements.txt - e gitfs:mount -o $(BUILD_DIR ) /gitfs .
28
28
29
29
$(VIRTUAL_ENV ) /bin/pex : virtualenv
30
30
$(VIRTUAL_ENV ) /bin/pip install pex wheel
Original file line number Diff line number Diff line change @@ -103,7 +103,11 @@ def check_args(self, args):
103
103
from raven .conf import setup_logging
104
104
from raven .handlers .logging import SentryHandler
105
105
106
- sentry_handler = SentryHandler (args .sentry_dsn )
106
+ sentry_handler = SentryHandler (args .sentry_dsn , tags = {
107
+ 'owner' : args .user ,
108
+ 'remote' : args .remote_url ,
109
+ 'mountpoint' : args .mount_point
110
+ })
107
111
sentry_handler .setLevel ("ERROR" )
108
112
setup_logging (sentry_handler )
109
113
log .addHandler (sentry_handler )
Original file line number Diff line number Diff line change 1
1
fusepy == 2.0.2
2
- pygit2 == 0.24.0
2
+ pygit2 == 0.24.1
3
3
six == 1.10.0
4
4
atomiclong
5
+ raven == 5.27.0
You can’t perform that action at this time.
0 commit comments