Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Correlation Branch into Dev #1571

Merged
merged 24 commits into from
Nov 25, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
49aac11
Distributed Tracing (#1270)
TsuyoshiUshio May 14, 2020
feafb36
Distributed Tracing Samples, Documentation, and Video (#1298)
TsuyoshiUshio May 14, 2020
8455ac0
Merge branch 'dev' of https://github.com/Azure/azure-functions-durabl…
davidmrdavid Nov 18, 2020
5ff4af2
partial PR feedback
davidmrdavid Nov 20, 2020
477d5dd
deleted .gitignore in samples
davidmrdavid Nov 20, 2020
9900862
renamed sample
davidmrdavid Nov 20, 2020
2de2933
PR feedback
davidmrdavid Nov 23, 2020
4e925cb
added comments for tracktrace, removed duplicates
davidmrdavid Nov 23, 2020
80b3e7f
simplified csproj
davidmrdavid Nov 23, 2020
fd113b8
removed newline in csproj
davidmrdavid Nov 23, 2020
08a0eff
linter fix
davidmrdavid Nov 23, 2020
c8eb2f8
changed end2end test since now arg to setStatus cannot be null
davidmrdavid Nov 23, 2020
3c35bcd
updated yml to include application insights key
davidmrdavid Nov 23, 2020
3d0c03b
adding instrumentation key to missing locations in yml
davidmrdavid Nov 23, 2020
49b3322
Merge branch 'dev' of https://github.com/Azure/azure-functions-durabl…
davidmrdavid Nov 24, 2020
d6adc73
Merge branch 'dev' of https://github.com/Azure/azure-functions-durabl…
davidmrdavid Nov 24, 2020
e8d1b70
increased timeout
davidmrdavid Nov 24, 2020
795decd
minor test infrastructure changes
davidmrdavid Nov 24, 2020
c3bf64e
uncomment flaky test for WIP feature
davidmrdavid Nov 24, 2020
2f2e1aa
fully commented out test for WIP feature
davidmrdavid Nov 24, 2020
eba4edb
PR feedback
davidmrdavid Nov 25, 2020
45bde36
revert timeout expansion, removed whitespace
davidmrdavid Nov 25, 2020
c7ed37d
removed the unused AppAuthentication dependency
davidmrdavid Nov 25, 2020
2860f16
no null-coalescing in demo
davidmrdavid Nov 25, 2020
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
63 changes: 63 additions & 0 deletions samples/correlation-csharp/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
###############################################################################
davidmrdavid marked this conversation as resolved.
Show resolved Hide resolved
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
Loading