Skip to content

Commit c076104

Browse files
authored
Merge pull request #50 from ldennington/fix-daemon-config
Daemon-related bug fixes
2 parents 959ff3b + f68ba84 commit c076104

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

cmd/git-bundle-server/web-server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (w *webServerCmd) getDaemonConfig(ctx context.Context) (*daemon.DaemonConfi
4242
}
4343

4444
return &daemon.DaemonConfig{
45-
Label: "com.github.gitbundleserver",
45+
Label: "com.git-ecosystem.gitbundleserver",
4646
Description: "Web server hosting Git Bundle Server content",
4747
Program: programPath,
4848
}, nil

test/integration/features/step_definitions/daemon.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,3 @@ Then('the daemon is not running', async function (this: IntegrationBundleServerW
2626
var daemonStatus = this.getDaemonState()
2727
assert.strictEqual(daemonStatus, DaemonState.NotRunning)
2828
})
29-
30-
// After({tags: '@daemon'}, async function (this: IntegrationBundleServerWorld) {
31-
// var daemonState = this.getDaemonState()
32-
// if (daemonState === DaemonState.Running) {
33-
// this.runCommand('git-bundle-server web-server stop')
34-
// }
35-
// });

0 commit comments

Comments
 (0)