Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/embedded-receive-file/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func main() {
os.Stdin.Read(buffer)
goOn = false
syncClient.StopPollingForUpdates()
syncClient.Stop(5)
syncClient.Stop(5, false)
close(stopChannel)
waitGroup.Wait()
}
Expand All @@ -115,7 +115,7 @@ func fileReceiver(syncClient *client.SyncServiceClient, updatesChannel chan *cli
}

func deleteFile(syncClient *client.SyncServiceClient, object *client.ObjectMetaData) {
syncClient.MarkObjectDeleted(object)
syncClient.MarkObjectDeleted("", object)
}

func receiveFile(syncClient *client.SyncServiceClient, object *client.ObjectMetaData) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/embedded-upload-files/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func main() {
}
goOn = false
waitGroup.Wait()
syncClient.Stop(1)
syncClient.Stop(1, false)
}

func curTime() float64 {
Expand Down
3 changes: 0 additions & 3 deletions tests/endtoend/.gitignore

This file was deleted.

295 changes: 0 additions & 295 deletions tests/endtoend/endToEnd_test.go

This file was deleted.

Loading