feat: Add unique ID to MyceliumStreamer
- Added a unique ID to the MyceliumStreamer struct for better identification of individual streamer instances.
This commit is contained in:
@@ -24,6 +24,7 @@ pub mut:
|
|||||||
incremental_mode bool = true // default is true
|
incremental_mode bool = true // default is true
|
||||||
server_port int = 9000 // default is 9000
|
server_port int = 9000 // default is 9000
|
||||||
is_worker bool // true if this is a worker node
|
is_worker bool // true if this is a worker node
|
||||||
|
id string = rand.string(10)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn new_db_streamer(args NewStreamerArgs) !OurDB {
|
fn new_db_streamer(args NewStreamerArgs) !OurDB {
|
||||||
@@ -62,6 +63,7 @@ pub fn new_streamer(args NewStreamerArgs) !MyceliumStreamer {
|
|||||||
workers: {}
|
workers: {}
|
||||||
incremental_mode: args.incremental_mode
|
incremental_mode: args.incremental_mode
|
||||||
mycelium_client: client
|
mycelium_client: client
|
||||||
|
id: args.id
|
||||||
}
|
}
|
||||||
|
|
||||||
mut instances_factory := MyceliumStreamerInstances{}
|
mut instances_factory := MyceliumStreamerInstances{}
|
||||||
|
|||||||
Reference in New Issue
Block a user