Thanks.
Which version of Inedo SDk does version 7 requires/support?
F
Posts made by flavio.campana_0936
-
RE: Buildmaster 7 with docker error at start
-
Buildmaster 7 with docker error at start
Hello
I'm having some troubles starting buildmaster 7 with docker, this is the error i get:BuildMaster version is 7.0.0.57. Current DB schema version is unknown. Database is not initialized; initializing... Database initialized. Executing untracked script DDL-DML/0000. Untracked/10. Block 6.2 Upgrades.sql... Executing tracked script DDL-DML/v1-3/0001. 0.0.0/000 SET AUTO_CLOSE.sql... ALTER DATABASE statement not allowed within multi-statement transaction. This error may be resolved by adding "UseTransaction=False" to the script's AH: header statement.
What can i do?
Thanksps: the official guide has a mismatch between the command line examples and the table, i needed to use BUILDMASTER_SQL_CONNECTION_STRING and not SQL_CONNECTION_STRING to start buildmaster
-
Differences between sdk classes RemoteExecuteOperation, ExecuteOperation and RemoteJob
Hello,
i'm trying to understand what are the differences between these classes in the SDK.
Looking at examples on github they seems similar, but Remote* classes seems to already be inside the remote machine, so .net code work directly on the server (maybe it's windows only?) while with non-Remote you need to get an agent service with code likevar fileOps = context.Agent.TryGetService<ILinuxFileOperationsExecuter>() var ps = await context.Agent.GetServiceAsync<IRemoteProcessExecuter>().ConfigureAwait(false)
I dont understand exactly the use of RemoteJob classes, what is the correct use for that