Skip to content

Commit

Permalink
rename upload blob endpoint for development
Browse files Browse the repository at this point in the history
[#133753897]

Signed-off-by: Zachary Auerbach <[email protected]>
  • Loading branch information
dpb587-pivotal authored and zaksoup committed Nov 4, 2016
1 parent e83edb3 commit 485166e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion agent/action/concrete_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func NewFactory(
"release_apply_spec": NewReleaseApplySpec(platform),

// Rendered Templates
"upload_blob": NewUploadBlobAction(blobManager),
"upload_blob.v0": NewUploadBlobAction(blobManager),

// Disk management
"list_disk": NewListDisk(settingsService, platform, logger),
Expand Down
4 changes: 2 additions & 2 deletions agent/action/concrete_factory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ var _ = Describe("concreteFactory", func() {
Expect(action).To(Equal(NewSyncDNS(blobstore, settingsService, platform, logger)))
})

It("upload_blob", func() {
action, err := factory.Create("upload_blob")
It("upload_blob.v0", func() {
action, err := factory.Create("upload_blob.v0")
Expect(err).ToNot(HaveOccurred())

Expect(action).To(Equal(NewUploadBlobAction(blobManager)))
Expand Down
1 change: 1 addition & 0 deletions jobsupervisor/pipe/winsw_pipe_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var pathToPipeCLI string
var GoSequencePath string
var shell string
var echoCmdArgs []string

const echoOutput = "hello"

func TestWinswPipe(t *testing.T) {
Expand Down

0 comments on commit 485166e

Please sign in to comment.