You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Horde: Add a stream setting to allow using virtual streams for replication.
#preflight none [CL 21451090 by Ben Marsh in ue5-main branch]
This commit is contained in:
@@ -1036,7 +1036,7 @@ namespace Horde.Build.Perforce
|
||||
newClient.Description = "Created to mirror Perforce content to Horde Storage";
|
||||
newClient.Owner = perforce.Settings.UserName;
|
||||
newClient.Host = serverInfo.ClientHost;
|
||||
newClient.Stream = stream.Name;
|
||||
newClient.Stream = stream.Config.ReplicationStream ?? stream.Name;
|
||||
await perforce.CreateClientAsync(newClient);
|
||||
_logger.LogInformation("Created client {ClientName} for {StreamName}", newClient.Name, stream.Name);
|
||||
|
||||
|
||||
@@ -269,6 +269,11 @@ namespace Horde.Build.Server
|
||||
/// </summary>
|
||||
public string? ReplicationFilter { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Stream to use for replication, if different to the default.
|
||||
/// </summary>
|
||||
public string? ReplicationStream { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Workflows for dealing with new issues
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user