Browse Source

fix(node): fix dynamic channel buffer error in arm

ngjaying 4 years ago
parent
commit
de7e89134b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      xstream/nodes/dynamic_channel_buffer.go

+ 1 - 1
xstream/nodes/dynamic_channel_buffer.go

@@ -7,10 +7,10 @@ import (
 )
 
 type DynamicChannelBuffer struct {
+	limit  int64
 	In     chan api.SourceTuple
 	Out    chan api.SourceTuple
 	buffer []api.SourceTuple
-	limit  int64
 }
 
 func NewDynamicChannelBuffer() *DynamicChannelBuffer {