Skip to content

Commit

Permalink
Merge pull request #50 from ldennington/fix-daemon-config
Browse files Browse the repository at this point in the history
Daemon-related bug fixes
  • Loading branch information
vdye authored May 4, 2023
2 parents 959ff3b + f68ba84 commit c076104
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/git-bundle-server/web-server.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (w *webServerCmd) getDaemonConfig(ctx context.Context) (*daemon.DaemonConfi
}

return &daemon.DaemonConfig{
Label: "com.github.gitbundleserver",
Label: "com.git-ecosystem.gitbundleserver",
Description: "Web server hosting Git Bundle Server content",
Program: programPath,
}, nil
Expand Down
7 changes: 0 additions & 7 deletions test/integration/features/step_definitions/daemon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,3 @@ Then('the daemon is not running', async function (this: IntegrationBundleServerW
var daemonStatus = this.getDaemonState()
assert.strictEqual(daemonStatus, DaemonState.NotRunning)
})

// After({tags: '@daemon'}, async function (this: IntegrationBundleServerWorld) {
// var daemonState = this.getDaemonState()
// if (daemonState === DaemonState.Running) {
// this.runCommand('git-bundle-server web-server stop')
// }
// });

0 comments on commit c076104

Please sign in to comment.